-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "expo-doc-vision",
"version": "0.1.2",
"description": "Expo native module for offline document OCR on iOS using Apple Vision & PDFKit",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"ios",
"plugin",
"app.plugin.js",
"expo-module.config.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "expo-module build && tsc --project plugin/tsconfig.json",
"clean": "expo-module clean && rm -rf plugin/build",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"example:dev": "cd example && npm dev"
},
"keywords": [
"expo",
"react-native",
"ocr",
"vision",
"pdfkit",
"document",
"ios",
"offline",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhanziyang/expo-doc-vision.git"
},
"bugs": {
"url": "https://github.com/zhanziyang/expo-doc-vision/issues"
},
"author": "zhanziyang <zhanziyang126@hotmail.com> (https://github.com/zhanziyang)",
"license": "MIT",
"homepage": "https://github.com/zhanziyang/expo-doc-vision#readme",
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"expo": "^52.0.0",
"expo-module-scripts": "^4.0.0",
"expo-modules-core": "^2.0.0",
"react-native": "^0.76.0"
},
"expo": {
"autolinking": {
"nativeModulesDir": "."
}
}
}