-
Notifications
You must be signed in to change notification settings - Fork 590
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "react-native-camera-kit",
"repository": {
"type": "git",
"url": "https://github.com/teslamotors/react-native-camera-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "14.1.0",
"description": "A high performance, fully featured, rock solid camera library for React Native applications",
"nativePackage": true,
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist/",
"test": "jest",
"lint": "yarn eslint -c .eslintrc.js",
"check-ios": "scripts/check-ios.sh",
"release": "yarn clean && yarn build && yarn publish --verbose",
"release:beta": "yarn clean && yarn build && yarn publish --tag beta --verbose",
"release:local": "yarn clean && yarn build && tmp=$(mktemp) && yarn pack --filename $tmp.tar.gz && open -R $tmp.tar.gz",
"start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start",
"bootstrap": "cd example/ && bundle install && yarn && cd ios/ && bundle exec pod install",
"bootstrap-linux": "cd example/ && yarn"
},
"main": "dist/index.js",
"module": "dist/index.js",
"source": "./src/",
"types": "dist/index.d.ts",
"react-native": "src/index",
"dependencies": {},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.83",
"@react-native/eslint-config": "0.74.83",
"@react-native/metro-config": "0.74.83",
"@react-native/typescript-config": "0.74.83",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "0.74.1",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">=18"
},
"codegenConfig": {
"name": "rncamerakit_specs",
"type": "all",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.rncamerakit"
}
},
"packageManager": "[email protected]"
}