-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "fingerpose",
"version": "0.1.0",
"description": "Finger pose classifier for hand landmarks detected by TensorFlow.js handpose model",
"main": "dist/fingerpose.js",
"source": "src/index.js",
"scripts": {
"dev": "webpack --mode development --progress --colors --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andypotato/fingerpose.git"
},
"keywords": [
"TensorFlow",
"HandPose",
"Hand gesture",
"Finger pose estimation",
"Gesture estimation"
],
"author": "Andreas Schallwig",
"license": "MIT",
"engines": {
"node": "10"
},
"bugs": {
"url": "https://github.com/andypotato/fingerpose/issues"
},
"homepage": "https://github.com/andypotato/fingerpose#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}