-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
53 lines (53 loc) · 2.7 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
{
"name": "@dannadori/face-landmark-detection-worker-js",
"description": "",
"main": "dist/face-landmark-detection-worker.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "npx webpack --config webpack.config.js",
"webpack_full": "BUILD_TYPE=full npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workerfull.d.ts",
"webpack_short": "BUILD_TYPE=short npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workershort.d.ts",
"webpack_full_with_attention": "BUILD_TYPE=full_with_attention npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workerfull_with_attention.d.ts",
"webpack_short_with_attention": "BUILD_TYPE=short_with_attention npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workershort_with_attention.d.ts",
"webpack_mediapipe": "BUILD_TYPE=mediapipe npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workermediapipe.d.ts",
"webpack_tfjs": "BUILD_TYPE=tfjs npx webpack --config webpack.config.js && cp dist/face-landmark-detection-worker.d.ts dist/face-landmark-detection-workertfjs.d.ts",
"clean": "rimraf dist/*",
"build": "npm-run-all clean webpack webpack_full webpack_short webpack_full_with_attention webpack_short_with_attention webpack_mediapipe webpack_tfjs"
},
"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": {
"@types/node": "^17.0.30",
"ifdef-loader": "^2.3.2",
"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",
"@mediapipe/face_mesh": "^0.4.1633559619",
"@tensorflow-models/face-landmarks-detection": "^1.0.1",
"@tensorflow/tfjs": "^3.16.0",
"@tensorflow/tfjs-backend-wasm": "^3.16.0",
"buffer": "^6.0.3"
},
"version": "0.0.16"
}