-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "wolkenwelten-ts",
"version": "0.0.1",
"description": "An experiment with voxels",
"author": "Benjamin Vincent Schulenburg <[email protected]>",
"license": "AGPL3",
"type": "module",
"scripts": {
"build": "vite build",
"check": "npm run check:circular && npm run check:types",
"check:circular": "madge --circular index.ts",
"check:types": "tsc -p ./tsconfig.json --noEmit",
"dev": "npm run dev:client & npm run dev:server",
"dev:client": "vite",
"dev:server": "node --import tsx --import ./src/server/loader.js --watch ./src/server/main.ts",
"preview": "vite preview",
"format": "npx @biomejs/biome format --write ./src",
"optimize": "node scripts/optimizeAssets.js",
"zip": "npm run build && zip -r ld-itch-compatible.zip dist/"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/howler": "latest",
"@types/node": "latest",
"@types/ws": "latest",
"madge": "latest",
"typescript": "latest",
"vite": "latest"
},
"dependencies": {
"gl-matrix": "latest",
"howler": "latest",
"tsx": "latest",
"vox-reader": "latest",
"ws": "latest"
}
}