-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
27 lines (27 loc) · 971 Bytes
/
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
{
"name": "rubik-cube",
"version": "1.0.0",
"description": "使用 ThreeJs 制作的魔方游戏,支持切换魔方阶数。",
"main": "index.js",
"scripts": {
"tsc:watch": "tsc --watch",
"start": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --config web-dev-server.config.js\"",
"build": "rimraf dist && tsc && rollup -c rollup.config.js"
},
"keywords": ["rubik-cube", "rubik", "threejs", "webgl", "game"],
"author": "Wang Pengfei <[email protected]> (https://pengfeixc.com)",
"license": "MIT",
"devDependencies": {
"@open-wc/building-rollup": "^2.0.1",
"@types/three": "^0.134.0",
"@web/dev-server": "^0.1.28",
"concurrently": "^6.4.0",
"deepmerge": "^4.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"typescript": "^4.5.2"
},
"dependencies": {
"three": "^0.135.0"
}
}