-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 760 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 760 Bytes
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
{
"name": "three-blendtree",
"version": "1.1.1",
"description": "An animation blendtree implementation for three.js",
"main": "BlendTree.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"keywords": [
"threejs",
"animation",
"blendtree",
"unity",
"animation-blendtree",
"three.js",
"threejs-animation",
"threejs-blendtree"
],
"author": "Jonathan Schrack",
"repository": {
"type": "git",
"url": "git+https://github.com/jmschrack/three-blendtree.git"
},
"license": "ISC",
"devDependencies": {
"lil-gui": "^0.19.1",
"vite": "^5.1.0"
},
"peerDependencies": {
"three": ">=0.150.0"
},
"files": [
"src/"
]
}