This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "v3d-web",
"version": "0.1.0",
"description": "Single camera motion-tracking in browser",
"keywords": [
"babylon.js",
"VRM",
"MediaPipe",
"WebGL"
],
"files": [
"dist",
"dist/src/index.d.ts",
"dist/src/index.js",
"dist/src/index.js.map",
"dist/src/core.d.ts",
"dist/src/core.js",
"dist/src/core.js.map",
"dist/src/mediapipe.d.ts",
"dist/src/mediapipe.js",
"dist/src/mediapipe.js.map",
"dist/src/v3d-web.d.ts",
"dist/src/v3d-web.js",
"dist/src/v3d-web.js.map",
"dist/src/helper",
"dist/src/worker"
],
"license": "AGPL-3.0-only",
"author": "Phantom Development",
"scripts": {
"build": "webpack --config webpack.config.js",
"debug": "webpack-dev-server --config webpack.test.config.js",
"start": "npm run build && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/chroma-js": "^2.1.3",
"@types/node": "^16.11.9",
"@types/webpack": "^5.28.0",
"chroma-js": "^2.1.2",
"copy-webpack-plugin": "^10.0.0",
"kalmanjs": "^1.1.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1632432234",
"@mediapipe/control_utils": "^0.6.1629159505",
"@mediapipe/drawing_utils": "^0.3.1620248257",
"@mediapipe/holistic": "^0.5.1635989137",
"comlink": "^4.3.1",
"v3d-core": "^1.0.15"
}
}