-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.61 KB
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
38
39
40
{
"name": "battle-of-fell-desert",
"version": "1.0.0",
"description": "",
"private": "true",
"source": "src/index.html",
"type": "module",
"scripts": {
"zip": "cd dist && zip -r ../build/fell-desert.zip ./ -x '.DS_Store'",
"format-check": "prettier --config .prettierrc.yaml --check .",
"format-fix": "prettier --config .prettierrc.yaml --write .",
"find-js": "find src -name \"*.js\" -type f",
"delete-js": "find src -name \"*.js\" -type f -delete",
"start": "npm run copy-assets && BROWSER='firefox' npx vite dev",
"update-all-submodules": "git submodule update --init --force --remote",
"start-debug": "npm run copy-assets && DEBUG='true' BROWSER='firefox' npx vite dev",
"dev": "npm run copy-assets && BROWSER='firefox' DEBUG='true' CAMPAIGN_ID='sandbox' npx vite dev",
"build": "npm run copy-assets && npx vite build",
"preview": "npm run copy-assets && BROWSER='firefox' CAMPAIGN_ID='sandbox' npx vite preview",
"copy-assets": "rm -rf public/assets && mkdir -p public/assets && rsync --recursive assets/toDist/* public/assets",
"tsc": "npx tsc --noEmit 2>&1 | head -10",
"test": "vitest run",
"test-watch": "vitest"
},
"author": "Chadius",
"license": "ISC",
"dependencies": {
"node": "^24.11.0",
"p5": "^1.11.11"
},
"devDependencies": {
"@types/p5": "^1.7.6",
"prettier": "^3.6.2",
"prettier-ts": "1.17.1-2",
"ts-node": "^10.9.1",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vitest": "^3.2.4"
}
}