forked from piesku/millennials
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 920 Bytes
/
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
{
"name": "dirty12",
"version": "0.0.0",
"private": true,
"description": "A js13kGames 2024 game.",
"contributors": [
"Stanisław Małolepszy <sta@malolepszy.org>",
"Michał Budzyński <michal@virtualdesign.pl>"
],
"license": "ISC",
"scripts": {
"lint": "prettier --check \"**/*.ts\"",
"pretty": "prettier --write \"**/*.ts\"",
"start": "esbuild ./index.ts --define:DEBUG=true --define:INTERVAL=1 --target=es2020 --preserve-symlinks --bundle --sourcemap --outdir=. --outbase=. --color=false --servedir=. --serve=1234",
"test": "npm run lint && npm run check",
"check": "tsc --noEmit",
"watch": "tsc --noEmit --watch -p ."
},
"devDependencies": {
"esbuild": "0.23",
"prettier": "3.3",
"spritesmith": "^3.4.1",
"typescript": "5.5"
},
"engines": {
"node": ">=18"
}
}