forked from teslamotors/react-native-camera-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.64 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.64 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
{
"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": "17.0.1",
"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",
"codegen": "react-native codegen --verbose --path . --platform ios --source library && react-native codegen --verbose --path . --platform android --source library",
"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",
"files": [
"android",
"build",
"dist",
"ios",
"src",
"ReactNativeCameraKit.podspec"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.79.0",
"@react-native/eslint-config": "0.79.0",
"@react-native/metro-config": "0.79.0",
"@react-native/typescript-config": "0.79.0",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"eslint": "^8.19.0",
"prettier": "2.8.8",
"react": "19.0.0",
"react-native": "0.79.0",
"react-test-renderer": "19.0.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">=18"
},
"codegenConfig": {
"name": "NativeCameraKitSpec",
"type": "all",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.rncamerakit"
},
"ios": {
"componentProvider": {
"CKCamera": "CKCameraViewComponentView"
}
}
},
"packageManager": "yarn@1.22.22"
}