This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.78 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "phaser-electron-typescript-parcel",
"version": "1.0.0",
"description": "phaser electron typescript parcel template",
"main": "build/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"superclean": "rimraf .cache node_modules build dist",
"clean": "rimraf build dist",
"download-phaser-typedef": "download --out typings https://raw.githubusercontent.com/photonstorm/phaser3-docs/master/typescript/phaser.d.ts",
"build": "rimraf build && parcel build src/main.ts src/index.html --public-url ./ -d build --out-file=main --target=electron",
"watch": "rimraf build && parcel watch src/main.ts src/index.html --public-url ./ -d build --out-file=main --target=electron",
"app": "cross-env ELECTRON_DEBUG=true electron build/main.js",
"debug": "cross-env ELECTRON_DEBUG=vscode electron --remote-debugging-port=9223 build/main.js",
"dist": "yarn build && electron-builder"
},
"homepage": "https://github.com/distantcam/phaser-electron-typescript-parcel",
"bugs": {
"url": "https://github.com/distantcam/phaser-electron-typescript-parcel/issues"
},
"build": {
"appId": "parcel.electron",
"mac": {
"category": "your.app.category.type"
},
"files": [
"build/*"
]
},
"keywords": [
"phaser",
"electron"
],
"author": "distantcam",
"license": "MIT",
"dependencies": {
"phaser": "^3.54.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"download-cli": "^1.1.1",
"electron": "^9.4.0",
"electron-builder": "^22.10.5",
"electron-reload": "^1.5.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}