-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "react-hand-controller",
"version": "1.0.4",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc && npm pack",
"release": "release-please"
},
"keywords": [
"react",
"controller",
"tensorflow"
],
"author": "Yura Ilyaev <ilyaev@gmail.com>",
"license": "ISC",
"description": "A React component that leverages a camera to detect hands",
"repository": {
"type": "git",
"url": "https://github.com/ilyaev/react-hand-controller.git"
},
"homepage": "https://alchemy.pbartz.net/",
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.22",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@mediapipe/hands": "^0.4.1675469240",
"@tensorflow-models/hand-pose-detection": "^2.0.1",
"@tensorflow/tfjs-backend-webgl": "^4.20.0",
"@tensorflow/tfjs-converter": "^4.20.0",
"@tensorflow/tfjs-core": "^4.20.0"
}
}