-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "utsuroi",
"version": "1.0.1",
"description": "This is a plug-in for easy switching animation of 3D models of Three.js.",
"main": "dist/utsuroi.cjs.js",
"module": "dist/utsuroi.esm.js",
"unpkg": "dist/utsuroi.js",
"types": "dist/utsuroi.d.ts",
"scripts": {
"build": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly --out ./dist/utsuroi.d.ts",
"postbuild": "npm run build:types",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sawa-zen/three-animation-switcher.git"
},
"author": "sawa-zen",
"license": "MIT",
"bugs": {
"url": "https://github.com/sawa-zen/three-animation-switcher/issues"
},
"keywords": [
"three.js",
"AnimationMixer"
],
"homepage": "https://github.com/sawa-zen/three-animation-switcher#readme",
"peerDependencies": {
"three": "^0.111.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"three": "^0.111.0",
"typescript": "^3.7.3"
},
"dependencies": {
"@tweenjs/tween.js": "^18.5.0",
"eventemitter3": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0"
}
}