-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 1.15 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
34
{
"name": "template-esbuild-ts",
"description": "A Phaser 3 TypeScript template using esbuild.",
"version": "1.2.1",
"main": "index.js",
"scripts": {
"dev": "node log.js dev & node esbuild/dev.server.mjs -w",
"build": "node log.js build & node esbuild/build.prod.mjs",
"dev-nolog": "node esbuild/dev.server.mjs -w",
"build-nolog": "node esbuild/build.prod.mjs"
},
"author": "Phaser Studio <[email protected]> (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"
},
"devDependencies": {
"@jgoz/esbuild-plugin-livereload": "^2.0.5",
"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",
"typescript": "^5.4.5"
}
}