-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
51
52
53
54
55
56
57
{
"name": "three-default-cube",
"version": "0.2.4",
"stable": false,
"description": "Game Development Toolkit for Three.js",
"main": "./three-default-cube.js",
"types": "./types/three-default-cube.d.ts",
"files": [
"three-default-cube.js",
"three-default-cube.module.js",
"types/**/*.d.ts"
],
"directories": {
"types": "./types"
},
"scripts": {
"build:all": "npm run build:js && npm pack",
"build": "rollup --config ./rollup-config/cjs.config.js",
"build:module": "rollup --config ./rollup-config/es.config.js",
"build:js": "npm run build && npm run build:module",
"build:docs": "cd ./docs && hugo && cd ../",
"docs": "cd docs && hugo server -D"
},
"keywords": [
"three",
"threejs",
"webgl",
"game",
"game-development",
"engine"
],
"homepage": "https://defaultcube.wtlstudio.com/",
"author": "wtlstudio",
"repository": {
"type": "git",
"url": "https://github.com/mjurczyk/three-default-cube.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-json": "^6.0.0",
"rollup": "2.52.3",
"three-pathfinding": "^1.1.0"
},
"peerDependencies": {
"@ionic-native/native-storage": "5.33.1",
"@ionic-native/navigation-bar": "5.33.1",
"@ionic-native/screen-orientation": "5.30.0",
"howler": "2.2.1",
"postprocessing": "6.19.0",
"three": "^0.125.0",
"three-pathfinding": "^1.1.0",
"troika-three-text": "0.35.0"
}
}