forked from mgcrea/vision-camera-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.34 KB
/
package.json
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
{
"name": "@mgcrea/vision-camera-barcode-scanner",
"version": "0.10.1",
"description": "High performance barcode scanner for React Native using VisionCamera",
"author": "Olivier Louvignes <olivier@mgcrea.io>",
"repository": "github:mgcrea/vision-camera-code-scanner",
"homepage": "https://github.com/mgcrea/vision-camera-code-scanner#readme",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"android/{src/**/*.{java,xml},build.gradle,gradle.properties}",
"ios/*.{h,m,mm}",
"*.podspec"
],
"scripts": {
"start": "npm run spec -- --watch",
"build": "tsup src/index.ts --format cjs,esm --sourcemap --dts --clean",
"lint": "eslint src/",
"prettycheck": "prettier --check src/",
"typecheck": "tsc --noEmit",
"spec": "exit 0",
"test": "npm run lint && npm run prettycheck && npm run typecheck && npm run spec",
"prettify": "prettier --write 'android/src/**/*.java' src/",
"clean": "rm -rf android/build example/android/build example/android/app/build example/ios/build",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-native",
"ios",
"android"
],
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vision-camera": ">=3.9.2-0",
"react-native-worklets-core": ">=1.1.1-0"
},
"devDependencies": {
"@mgcrea/eslint-config-react-native": "^0.10.1",
"@react-native-community/cli-platform-android": "^13.6.5",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/gradle-plugin": "^0.74.80",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.5",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.79",
"@types/react-native": "0.72.8",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-java": "^2.6.0",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "18.2.0",
"react-native": "0.73.7",
"react-native-vision-camera": "3.9.2",
"react-native-worklets-core": "1.1.1",
"release-it": "^17.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}