-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.05 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
{
"name": "wasm4-runtime",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf dist public/cart.wasm src/apu-worklet.min.js",
"build:slim": "VITE_WASM4_GAMEDEV_MODE=false vite build",
"build:developer-build": "vite build",
"build:apu-worklet": "esbuild src/apu-worklet.ts --minify --outfile=src/apu-worklet.min.generated.js --bundle",
"build": "npm run build:apu-worklet && npm run build:slim && npm run build:developer-build",
"start": "concurrently --kill-others -n apu-worklet,vite 'npm:build:apu-worklet -- --watch' 'npm:start:developer-build'",
"start:slim": "VITE_WASM4_GAMEDEV_MODE=false vite --host",
"start:developer-build": "vite --host",
"test": "tsc && eslint src",
"lint": "eslint src --fix"
},
"dependencies": {
"lit": "^3.1.2"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"concurrently": "8.2.2",
"eslint": "^8.56.0",
"rimraf": "5.0.5",
"vite": "^5.0.12"
}
}