-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "@dannadori/bodypix-worker-js",
"version": "1.0.61",
"description": "",
"main": "dist/bodypix-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": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@types/node": "^17.0.30",
"before-build-webpack": "^0.2.12",
"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/body-pix": "^2.2.0",
"@tensorflow/tfjs": "^3.16.0",
"@tensorflow/tfjs-backend-wasm": "^3.16.0",
"@tensorflow/tfjs-converter": "^3.16.0",
"@tensorflow/tfjs-core": "^3.16.0"
}
}