forked from Golen87/TwilightWings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (87 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "TwilightWings",
"version": "1.0.1",
"description": "DESCRIPTION",
"main": "build/main.js",
"scripts": {
"download-phaser-typedef": "download --out typings https://raw.githubusercontent.com/photonstorm/phaser/master/types/phaser.d.ts",
"superclean": "rimraf .cache node_modules build dist public",
"clean": "rimraf build dist public",
"build": "rimraf build && parcel build src/electron.ts src/index.html --public-url ./ -d build --out-file=main --target=electron",
"watch": "rimraf build && parcel watch src/electron.ts src/index.html --public-url ./ -d build --out-file=main --target=electron",
"app": "cross-env ELECTRON_DEBUG=false electron build/main.js",
"debug": "cross-env ELECTRON_DEBUG=true electron --remote-debugging-port=9223 build/main.js",
"mac": "rimraf dist && yarn build && electron-builder --mac",
"windows": "rimraf dist && yarn build && electron-builder --windows",
"linux": "rimraf dist && yarn build && electron-builder --linux",
"serve": "webpack serve --config webpack/webpack.dev.js",
"public": "rimraf public && webpack --config webpack/webpack.prod.js"
},
"build": {
"appId": "twilightwings",
"productName": "TwilightWings",
"mac": {
"category": "your.app.category.type"
},
"win": {
"target": "nsis",
"icon": "./static/icon.png"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": "deb"
},
"deb": {},
"files": [
"build/*"
]
},
"keywords": [
"phaser",
"electron"
],
"author": {
"name": "Måns Gezelius",
"email": "[email protected]",
"url": "https://golen.nu/"
},
"license": "MIT",
"dependencies": {
"mathjs": "^9.4.1",
"numeric": "^1.2.6",
"phaser": "^3.54.0",
"phaser3-rex-plugins": "^1.1.51",
"yarn": "^1.22.10"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"download-cli": "^1.1.1",
"electron": "^9.2.1",
"electron-builder": "^22.10.5",
"electron-reload": "^1.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"javascript-obfuscator": "^2.13.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.10.3",
"parcel-plugin-static-files-copy": "^2.6.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.2",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-obfuscator": "^3.3.1",
"workbox-webpack-plugin": "^6.1.5"
}
}