-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "@naruya/gaussian-vrm",
"version": "1.0.2",
"description": "3D Gaussian Splatting with VRM character animation",
"main": "lib/gaussian-vrm.bundled.js",
"module": "lib/gaussian-vrm.bundled.js",
"type": "module",
"exports": {
".": {
"import": "./lib/gaussian-vrm.bundled.js"
}
},
"files": [
"lib/gaussian-vrm.bundled.js"
],
"peerDependencies": {
"three": "^0.170.0",
"@pixiv/three-vrm": ">=2.1.0",
"jszip": "^3.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/naruya/gaussian-vrm"
},
"homepage": "https://github.com/naruya/gaussian-vrm#readme",
"bugs": {
"url": "https://github.com/naruya/gaussian-vrm/issues"
},
"keywords": [
"gaussian-splatting",
"3dgs",
"vrm",
"vtuber",
"avatar",
"three.js",
"threejs",
"3d",
"animation"
],
"author": "naruya",
"license": "MIT",
"scripts": {
"build": "node build.js"
},
"devDependencies": {
"esbuild": "^0.24.0"
},
"publishConfig": {
"access": "public"
}
}