-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.29 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
{
"name": "FireAndDice",
"version": "1.0.0",
"description": "DESCRIPTION",
"main": "build/main.js",
"scripts": {
"postinstall": "neu update",
"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 bin static/neutralino.js",
"clean": "rimraf build dist public",
"build": "yarn public && neu build",
"sync": "yarn public && cap sync",
"android": "yarn sync && cap open android",
"serve": "webpack serve --config webpack/webpack.dev.js",
"public": "yarn clean && webpack --config webpack/webpack.prod.js"
},
"build": {
"appId": "fireanddice",
"productName": "FireAndDice",
"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"
],
"author": {
"name": "Måns Gezelius",
"email": "[email protected]",
"url": "https://golen.nu/"
},
"license": "MIT",
"dependencies": {
"@aashu-dubey/capacitor-statusbar-safe-area": "^1.0.1",
"@capacitor/android": "^4.0.1",
"@capacitor/core": "^4.0.1",
"@capacitor/status-bar": "^4.0.1",
"@hugotomazi/capacitor-navigation-bar": "^1.1.1",
"mathjs": "^9.4.1",
"numeric": "^1.2.6",
"phaser": "^3.54.0",
"phaser3-rex-plugins": "^1.1.51",
"yarn": "^1.22.10"
},
"devDependencies": {
"@capacitor/cli": "^4.0.1",
"@neutralinojs/neu": "^9.3.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"download-cli": "^1.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"javascript-obfuscator": "^2.13.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"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"
}
}