-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 858 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
28
29
30
31
32
33
{
"name": "rubik-cube-maziyo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"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.cjs\"",
"build": "rimraf dist && tsc && rollup -c rollup.config.js"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@open-wc/building-rollup": "^3.0.2",
"@types/three": "^0.163.0",
"@web/dev-server": "^0.4.3",
"concurrently": "^8.2.2",
"deepmerge": "^4.3.1",
"es-dev-server": "^2.1.0",
"rimraf": "^5.0.5",
"rollup": "^3.21.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.1",
"three": "^0.163.0"
}
}