-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "avoid-your-past-beetpx",
"version": "0.0.0",
"author": "Beetroot Paul",
"license": "MIT",
"private": true,
"description": "A snake-like BeetPx game where each collected coin brings a harmful memory of your past steps.",
"homepage": "https://github.com/beetrootpaul/avoid-your-past-beetpx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/beetrootpaul/avoid-your-past-beetpx.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky",
"start": "beetpx dev --open --htmlTitle \"[dev] Avoid Your Past\"",
"build": "npm run tsc && beetpx build --htmlTitle \"Avoid Your Past\"",
"prod": "npm run build && beetpx preview --open",
"itch": "npm run build && beetpx zip",
"format": "prettier --ignore-path .gitignore --write src/ README.md",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"checkForDepedencyUpdates": "npx npm-check-updates"
},
"devDependencies": {
"@beetpx/beetpx": "0.51.0",
"husky": "9.0.11",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"typescript": "5.5.3"
}
}