-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "@dannadori/handpose-worker-js",
"version": "1.0.28",
"description": "",
"main": "dist/handpose-worker.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "npx webpack --config webpack.config.js",
"clean": "rimraf dist/*",
"build": "npm-run-all clean webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-okada/image-analyze-workers"
},
"keywords": [
"webworker",
"image processing",
"tensorflowjs"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/w-okada/image-analyze-workers"
},
"homepage": "https://github.com/w-okada/image-analyze-workers",
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.9",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.4",
"webpack": "~5.72.0",
"webpack-cli": "~4.9.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@dannadori/worker-base": "^1.0.1",
"@tensorflow-models/handpose": "0.0.7",
"@tensorflow/tfjs": "^3.16.0",
"@tensorflow/tfjs-backend-wasm": "^3.16.0",
"@tensorflow/tfjs-backend-webgl": "^3.16.0",
"@tensorflow/tfjs-converter": "^3.16.0",
"@tensorflow/tfjs-core": "^3.16.0"
}
}