-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
50 lines (50 loc) · 1.48 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": "kokomi.js",
"version": "1.10.1",
"description": "A three.js helper library.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && rimraf build && rollup -c",
"updateIndex": "node examples/getFilesData.mjs",
"doc": "rimraf docs && typedoc src/index.ts",
"all": "node examples/getFilesData.mjs && rimraf dist && tsc && rimraf build && rollup -c && rimraf docs && typedoc src/index.ts"
},
"author": "alphardex",
"license": "MIT",
"dependencies": {
"blueimp-md5": "^2.19.0",
"camera-controls": "^2.8.5",
"cannon-es": "^0.20.0",
"gsap": "^3.12.5",
"imagesloaded": "^5.0.0",
"maku.js": "^1.0.8",
"marcher.js": "^1.4.3",
"mitt": "^3.0.1",
"nipplejs": "^0.10.2",
"simplex-noise": "^4.0.3",
"stats.js": "^0.17.0",
"three-custom-shader-material": "^5.4.0",
"three-stdlib": "^2.32.2",
"three.interactive": "^1.8.0",
"troika-three-text": "^0.49.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/blueimp-md5": "^2.18.2",
"@types/imagesloaded": "^4.1.6",
"@types/stats.js": "^0.17.3",
"@types/three": "^0.167.1",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.3",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"peerDependencies": {
"three": ">=0.137"
}
}