-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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": "hat-escape",
"version": "0.0.0",
"author": "Beetroot Paul",
"license": "UNLICENSED",
"private": true,
"description": "A game created during a weekend for a 150th Mini Jam.",
"homepage": "https://github.com/beetrootpaul/hat-escape#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/beetrootpaul/hat-escape.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky",
"syncAssets": "node ./scripts/syncAssets.js",
"syncAssets:watch": "node ./scripts/syncAssets.js watch",
"start": "beetpx dev --open --htmlTitle \"[dev] Hat Escape\"",
"build": "npm run tsc && beetpx build --htmlTitle \"Hat Escape\"",
"prod": "npm run build && beetpx preview --open",
"itch": "npm run build && beetpx zip",
"format": "prettier --ignore-path .gitignore --write scripts/ src/ README.md",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"test": "vitest run",
"checkForDepedencyUpdates": "npx npm-check-updates"
},
"devDependencies": {
"@beetpx/beetpx": "0.49.0",
"husky": "9.0.11",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"typescript": "5.5.3"
}
}