-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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": "motion-engine",
"version": "0.3.0",
"description": "Multi-track motion engine plugin for TalkingHead 3D avatars",
"type": "module",
"main": "src/MotionEngine.js",
"exports": {
".": "./src/MotionEngine.js",
"./studio": "./src/MotionStudio.js",
"./overlay": "./src/OverlayManager.js",
"./motions": "./src/motions.json",
"./motions-th": "./src/motions_th.json",
"./mirror": "./src/FaceMirror.js"
},
"peerDependencies": {
"@mediapipe/tasks-vision": ">=0.10.0"
},
"peerDependenciesMeta": {
"@mediapipe/tasks-vision": {
"optional": true
}
},
"scripts": {
"demo": "vite --open",
"build": "vite build",
"deploy": "npm run build && npx gh-pages -d dist",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"talkinghead",
"avatar",
"3d",
"motion",
"animation",
"gesture"
],
"license": "MIT",
"devDependencies": {
"@mediapipe/tasks-vision": "^0.10.32",
"gh-pages": "^6.0.0",
"talkinghead": "github:met4citizen/TalkingHead",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}