forked from cdiddy77/react-native-mediapipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 4.37 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
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
{
"name": "react-native-mediapipe",
"version": "0.6.0",
"description": "A React Native Camera and Player for MediaPipe applications.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli android/build examples/*/android/build examples/*/android/app/build examples/*/ios/build lib",
"prepare": "git submodule update --init --recursive && bob build",
"update-submodule": "git submodule update --remote --merge",
"adb-reverse": "adb reverse tcp:8081 tcp:8081",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android",
"mediapipe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cdiddy77/react-native-mediapipe.git"
},
"author": "Charles Parker <[email protected]> (https://github.com/cdiddy77)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdiddy77/react-native-mediapipe/issues"
},
"homepage": "https://github.com/cdiddy77/react-native-mediapipe#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/eslint-config": "^0.73.1",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.44",
"commitlint": "^17.0.2",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.73.4",
"react-native-builder-bob": "^0.23.2",
"react-native-vision-camera": "^4.5.3",
"react-native-worklets-core": "^1.3.3",
"release-it": "^15.0.0",
"turbo": "^1.10.7",
"typescript": "^5.3.3"
},
"resolutions": {
"@types/react": "^18.2.44",
"react-native-vision-camera@^3.8.2": "patch:react-native-vision-camera@npm%3A3.9.2#./.yarn/patches/react-native-vision-camera-npm-3.9.2-3b35d90475.patch",
"react-native-vision-camera@^3.9.2": "patch:react-native-vision-camera@npm%3A3.9.2#./.yarn/patches/react-native-vision-camera-npm-3.9.2-3b35d90475.patch",
"react-native-vision-camera@^4.0.1": "patch:react-native-vision-camera@patch%3Areact-native-vision-camera@npm%253A4.0.1%23./.yarn/patches/react-native-vision-camera-npm-4.0.1-7ecdf9d15a.patch%3A%3Aversion=4.0.1&hash=260f68&locator=react-native-mediapipe%2540workspace%253A.#./.yarn/patches/react-native-vision-camera-patch-cc9d789186.patch",
"react-native-vision-camera@^4.0.3": "patch:react-native-vision-camera@npm%3A4.0.5#./.yarn/patches/react-native-vision-camera-npm-4.0.5-0f2bdc9daa.patch"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vision-camera": "*",
"react-native-worklets-core": "*"
},
"workspaces": [
"docsite",
"examples/*"
],
"packageManager": "[email protected]",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/examples/objectdetection/node_modules",
"<rootDir>/examples/facelandmarkdetection/node_modules",
"<rootDir>/examples/posedetection/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"react-native-vector-icons": "^10.0.3"
}
}