-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.25 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
{
"name": "goodluck",
"version": "0.0.0",
"private": true,
"description": "A template for creating small and fast browser games",
"repository": {
"type": "git",
"url": "git+https://github.com/piesku/goodluck.git"
},
"contributors": [
"Staś Małolepszy <stas@piesku.com>",
"Michał Budzyński <michal@virtualdesign.pl>"
],
"license": "ISC",
"scripts": {
"clean": "find . -type d -name node_modules -prune -o \\( -name '*.js' -o -name '*.js.map' \\) -exec rm {} +",
"lint": "prettier --check \"**/*.ts\"",
"pretty": "prettier --write \"**/*.ts\"",
"start": "esbuild */index.ts --define:DEBUG=true --target=es2020 --preserve-symlinks --bundle --sourcemap --outdir=. --outbase=. --color=false --servedir=. --serve=1234",
"build": "esbuild */index.ts --define:DEBUG=true --target=es2020 --preserve-symlinks --bundle --sourcemap --outdir=. --outbase=. --color=false",
"test": "npm run lint && npm run ts:check",
"ts:check": "tsc --noEmit",
"ts:watch": "tsc --noEmit --watch -p ."
},
"devDependencies": {
"esbuild": "0.23",
"prettier": "3.3",
"typescript": "5.5"
},
"engines": {
"node": ">=18"
}
}