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
97 lines (97 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.77 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
{
"name": "react-native-camera-tool",
"version": "1.0.4",
"description": "Camera library for React Native with barcode scanning and gallery image scanning",
"keywords": [
"react-native",
"camera",
"barcode",
"gallery",
"scanning"
],
"homepage": "https://github.com/nylxar/react-native-camera-tool#readme",
"bugs": {
"url": "https://github.com/nylxar/react-native-camera-tool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylxar/react-native-camera-tool.git"
},
"license": "MIT",
"author": "nylxar",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs",
"example": "example"
},
"files": [
"android",
"!android/build",
"dist",
"ios",
"src",
"ReactNativeCameraKit.podspec"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist/",
"test": "jest",
"lint": "eslint -c .eslintrc.js",
"check-ios": "scripts/check-ios.sh",
"release": "pnpm run clean && pnpm run build && pnpm publish --verbose",
"release:beta": "pnpm run clean && pnpm run build && pnpm publish --tag beta --verbose",
"codegen": "react-native codegen --verbose --path . --platform ios --source library && react-native codegen --verbose --path . --platform android --source library",
"bootstrap": "cd example/ && pnpm install && cd ios/ && pod install",
"bootstrap-linux": "cd example/ && pnpm install"
},
"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"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"nativePackage": true,
"module": "dist/index.js",
"source": "./src/",
"react-native": "src/index",
"codegenConfig": {
"name": "NativeCameraKitSpec",
"type": "all",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.rncamerakit"
},
"ios": {
"componentProvider": {
"CKCamera": "CKCameraViewComponentView"
}
}
},
"packageManager": "pnpm@11.11.0"
}