-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.52 KB
/
Copy pathpackage.json
File metadata and controls
162 lines (162 loc) · 4.52 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "react-native-vision-camera-ocr-plus",
"version": "2.0.1",
"description": "React Native Vision Camera plugin for on-device text recognition (OCR) and translation using ML Kit. Maintained fork of react-native-vision-camera-text-recognition",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"react-native.config.js",
"lib",
"nitrogen",
"android",
"cpp",
"ios",
"app.plugin.js",
"nitro.json",
"*.podspec",
"README.md",
"!ios/build",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"clean": "rm -rf android/build android/.cxx node_modules lib example/android example/ios example/node_modules example/.expo yarn-error.log",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"typescript": "tsc",
"specs": "tsc --noEmit false && nitrogen --logLevel=\"debug\"",
"prepare": "bob build",
"release": "standard-version"
},
"keywords": [
"react-native",
"ios",
"android",
"camera",
"mlkit",
"ML Kit",
"react-native-vision-camera",
"vision-camera",
"text-recognition",
"text",
"ocr",
"text",
"text-detector",
"text-recognizer",
"mlkit",
"google-mlkit",
"machine-learning",
"image-processing",
"react-native-camera",
"react-native-ocr",
"vision-camera-ocr",
"react-native-vision-camera-text-recognition",
"nitro"
],
"repository": {
"type": "git",
"url": "https://github.com/jamenamcinteer/react-native-vision-camera-ocr-plus"
},
"author": "Jamena McInteer <hello@jamena.dev> (https://github.com/jamenamcinteer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamenamcinteer/react-native-vision-camera-ocr-plus/issues"
},
"homepage": "https://github.com/jamenamcinteer/react-native-vision-camera-ocr-plus#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@react-native/babel-preset": "^0.85.1",
"@react-native/eslint-config": "^0.85.1",
"@react-native/jest-preset": "^0.85.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"commitlint": "^20.5.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"nitrogen": "*",
"prettier": "^3.8.2",
"react": "19.2.5",
"react-native": "^0.85.1",
"react-native-builder-bob": "^0.41.0",
"react-native-nitro-modules": "*",
"react-native-vision-camera": "^5.0.9",
"react-native-vision-camera-worklets": "^5.0.9",
"react-native-worklets": "^0.8.3",
"standard-version": "^9.5.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.81.0",
"react-native-nitro-modules": "*",
"react-native-vision-camera": ">=5.0.0",
"react-native-vision-camera-worklets": "*",
"react-native-worklets": ">=0.8.0"
},
"jest": {
"preset": "@react-native/jest-preset",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.(test|spec).{js,jsx,ts,tsx}"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts",
"!src/__tests__/**/*"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"testEnvironment": "node",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|@react-native|react-native-vision-camera|react-native-worklets|react-native-vision-camera-worklets|react-native-nitro-modules)/)"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}