-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
41
42
43
{
"name": "tinyforge",
"version": "0.1.0",
"description": "A simplified game platform for rapidly prototyping and experimenting with 2D game ideas",
"type": "module",
"scripts": {
"build": "tsc -p src/web/tsconfig.json && node scripts/build-games.js",
"build:host": "tsc -p src/web/tsconfig.json",
"build:games": "node scripts/build-games.js",
"build:debug": "node scripts/build-games.js debug",
"check:alloc": "node scripts/check-alloc.js",
"test": "node scripts/test-utility.js",
"watch:host": "tsc -p src/web/tsconfig.json --watch",
"watch:games": "node scripts/watch-games.js",
"upload": "node scripts/upload.js",
"serve": "python -m http.server 8080",
"dev": "npm run build && npm run serve",
"postbuild": "npm run upload",
"postbuild:host": "npm run upload",
"postbuild:games": "npm run upload"
},
"keywords": [
"tinyforge",
"game-platform",
"webassembly",
"assemblyscript",
"gamedev"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"assemblyscript": "^0.28.9",
"basic-ftp": "^5.0.5",
"chokidar": "^3.6.0",
"dotenv": "^16.6.1",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
}
}