-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
30 lines (30 loc) · 860 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
29
30
{
"name": "jetlag",
"version": "1.0.0",
"description": "A 2D Game Framework for web and mobile, using PIXI.js and Box2D",
"scripts": {
"start": "node scripts/serve_game.mjs -w",
"build-game": "node scripts/deploy_game.mjs",
"check": "tsc",
"clean": "node scripts/clean.mjs",
"help": "node scripts/help.mjs"
},
"owner": "Michael Spear",
"license": "MIT",
"type": "module",
"dependencies": {
"@box2d/core": "^0.10.0",
"hammerjs": "^2.0.8",
"howler": "^2.2.4",
"pixi-filters": "^5.2.1",
"pixi.js": "^7.3.2"
},
"devDependencies": {
"@types/hammerjs": "^2.0.44",
"@types/howler": "^2.2.11",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"esbuild-serve": "^1.0.1",
"typescript": "^5.1.6"
}
}