-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "handtrackjs",
"version": "0.1.3",
"description": "Handtrackjs: A library for prototyping realtime hand tracking using neural networks (tensorflowjs)",
"main": "src/index.js",
"unpkg": "dist/handtrack.min.js",
"jsdelivr": "dist/handtrack.min.js",
"repository": {
"type": "git",
"url": "https://github.com/victordibia/handtrackjs.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cd demo && python3 -m http.server 3005",
"deploy": "gh-pages -d demoreact/build",
"srcbuild": "cross-env NODE_ENV=production parcel build --out-dir srcdist demo/index.html",
"build": "cp reactdemo/src/components/helpers/handtrack.js src/index.js && webpack --config webpack.config.js && cp dist/handtrack.min.js demo/lib/handtrack.min.js"
},
"files": [
"dist/**/*",
"src/**/*",
"models/**/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tensorflow/tfjs": "3.3.0",
"@tensorflow/tfjs-converter": "3.3.0",
"copy-webpack-plugin": "^8.1.1"
},
"devDependencies": {
"@types/jasmine": "~2.8.8",
"babel-core": "~6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.1",
"cssnano": "^4.1.8",
"gh-pages": "^1.1.0",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0"
}
}