This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
forked from lysdexic-audio/n4m-handpose
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
{
"name": "HandPose-OSC",
"author": {
"name": "Frederik T. Juutilainen",
"email": "[email protected]",
"url": "https://github.com/faaip/"
},
"version": "1.2.0",
"description": "",
"main": "main.js",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@tensorflow-models/handpose": "^0.0.3",
"@tensorflow-models/posenet": "^0.2.2",
"@tensorflow/tfjs": "^0.13.0",
"@tensorflow/tfjs-converter": "^1.7.0",
"@tensorflow/tfjs-core": "^1.7.0",
"dat.gui": "^0.7.7",
"node-osc": "^5.1.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"stats.js": "^0.17.0"
},
"scripts": {
"watch": "NODE_ENV=development parcel index.html --no-hmr --open ",
"build": "NODE_ENV=production parcel build index.html --no-minify --public-url ./",
"build-camera": "NODE_ENV=production parcel build camera.html --no-minify --public-url ./",
"lint": "eslint .",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --linux deb rpm AppImage --macos --win"
},
"build": {
"linux": {
"category": "Handtracking",
"icon": "build/1024x1024.png or any route to the right png file > 256px X 256px",
"target": [
"AppImage"
]
},
"win": {
"requestedExecutionLevel": "requireAdministrator"
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"babel-preset-es2017": "^6.24.1",
"clang-format": "~1.2.2",
"electron": "^3.0.8",
"electron-builder": "^22.6.1",
"eslint": "^4.19.1",
"parcel-bundler": "^1.12.4"
},
"eslintConfig": {
"rules": {
"require-jsdoc": 0,
"valid-jsdoc": 0
},
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"eslintIgnore": [
"dist/"
]
}