-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "avatar-runtime",
"version": "0.2.1",
"description": "Provider-agnostic avatar runtime for OpenPersona — Live2D, VRM, HeyGen, and vector fallback with a unified control namespace",
"author": "acnlabs",
"repository": {
"type": "git",
"url": "https://github.com/acnlabs/avatar-runtime.git"
},
"keywords": [
"avatar",
"live2d",
"virtual-avatar",
"avatar-control",
"openpersona",
"agent",
"persona"
],
"main": "src/runtime.js",
"exports": {
".": "./src/runtime.js",
"./web": "./web/index.js",
"./widget": "./web/avatar-widget.js"
},
"bin": {
"avatar-runtime": "bin/avatar-runtime.js"
},
"scripts": {
"start": "node bin/avatar-runtime.js",
"dev": "AVATAR_PROVIDER=mock node bin/avatar-runtime.js --port 3721",
"mock:live2d-bridge": "node bridges/live2d-bridge-mock.js",
"dev:live2d-cubism-bridge": "node bridges/live2d-cubism-web-bridge.js",
"dev:vrm-bridge": "node bridges/vrm-asset-server.js",
"accept:live2d": "bash dev-scripts/accept-live2d.sh",
"setup:vrm-sample": "bash scripts/ensure-default-vrm-sample.sh"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"files": [
"bin/",
"src/",
"web/",
"skill/",
"scripts/",
"docs/",
"assets/live2d/licenses/",
"assets/live2d/slot/default.model.json",
"assets/live2d/slot/default.model3.json",
"assets/live2d/slot/expressions/.gitkeep",
"assets/live2d/slot/motions/.gitkeep",
"assets/live2d/slot/textures/.gitkeep",
"assets/vrm/README.md",
"assets/vrm/slot/.gitkeep",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}