-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 810 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 810 Bytes
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
{
"name": "zenith-engine",
"private": true,
"type": "module",
"version": "0.0.1",
"main": "src/zenith.js",
"scripts": {
"build": "cd ./playground && pnpm run build",
"dev": "cd ./playground && pnpm run dev",
"generate": "cd ./playground && pnpm run generate",
"preinstall": "cd ./playground && pnpm install",
"postinstall": "cd ./playground && pnpm postinstall",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@types/node": "^20.10.5",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"pixi.js": "^7.3.2",
"stats.js": "^0.17.0",
"three": "^0.160.0"
}
}