-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "template-esbuild-ts",
"description": "A Phaser 3 TypeScript template using esbuild.",
"version": "1.2.1",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "node esbuild/dev.server.mjs -w",
"build": "node esbuild/build.prod.mjs",
"extrude-tilesets": "tsx tools/tile-extruder.ts"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-esbuild-ts.git"
},
"bugs": {
"url": "https://github.com/phaserjs/template-esbuild-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-esbuild-ts#readme",
"license": "MIT",
"dependencies": {
"phaser": "^3.87.0",
"phaser-animated-tiles": "^2.0.2",
"phaser-raycaster": "^0.10.11",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@jgoz/esbuild-plugin-livereload": "^2.0.5",
"@types/node": "^22.10.7",
"esbuild": "^0.21.2",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-serve": "^1.0.1",
"tile-extruder": "^2.1.0",
"tsx": "^4.19.2",
"typescript": "^5.4.5"
}
}