forked from prixe/lindo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 3.82 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "lindo",
"version": "2.4.0",
"description": "Play Dofus Touch on Linux/OS X/Window",
"author": "Prixe",
"licence": "GPL-3.0",
"repository": "https://github.com/prixe/lindo",
"scripts": {
"lint": "ng lint",
"build": "npm run build:dev",
"build:electron:dev": "tsc -p electron/ && ncp electron/i18n dist/electron/i18n",
"build:electron:prod": "tsc -p electron/tsconfig.prod.json && ncp electron/i18n dist/electron/i18n",
"build:dev": "npm run build:electron:dev && npm run lint && ng build --watch",
"build:prod": "npm run build:electron:prod && npm run lint && ng build --configuration=production",
"start": "electron ./",
"release:win": "build --win --x64 --ia32",
"release:mac": "build --mac --config.electronVersion=4.1.3",
"release:linux": "build --linux --x64",
"toc": "doctoc README.md",
"update": "ng update @angular/cli --migrate-only --from=1.7.4"
},
"dependencies": {
"@angular/animations": "~7.1.4",
"@angular/cdk": "~7.2.0",
"@angular/common": "~7.1.4",
"@angular/compiler": "~7.1.4",
"@angular/compiler-cli": "~7.1.4",
"@angular/core": "~7.1.4",
"@angular/flex-layout": "~7.0.0-beta.22",
"@angular/forms": "~7.1.4",
"@angular/http": "~7.1.4",
"@angular/material": "~7.2.0",
"@angular/platform-browser": "~7.1.4",
"@angular/platform-browser-dynamic": "~7.1.4",
"@angular/platform-server": "~7.1.4",
"@angular/router": "~7.1.4",
"@ngx-translate/core": "~11.0.1",
"@ngx-translate/http-loader": "~4.0.0",
"@types/winston": "~2.4.4",
"ajv": "~6.6.2",
"angular-sortablejs": "~2.6.0",
"async": "~2.6.1",
"axios": "^0.19.2",
"codelyzer": "~4.5.0",
"compare-versions": "~3.4.0",
"core-js": "~2.6.1",
"crypto": "~1.0.1",
"del": "~4.0.0",
"electron-localshortcut": "~3.1.0",
"electron-settings": "~3.2.0",
"enhanced-resolve": "~4.1.0",
"eventemitter3": "~3.1.0",
"flexboxgrid": "~6.3.1",
"fs-extra": "~7.0.1",
"hammerjs": "~2.0.8",
"js-beautify": "~1.8.9",
"macaddress": "~0.2.9",
"marked": "~0.5.2",
"ngx-chips": "~1.9.8",
"node-translate": "~0.0.4",
"request": "~2.88.0",
"request-progress": "~3.0.0",
"rxjs": "~6.3.3",
"socket.io-client": "~2.2.0",
"sortablejs": "~1.7.0",
"sweetalert2": "~7.33.1",
"tslib": "~1.9.0",
"tslint": "~5.12.0",
"winston": "~3.1.0",
"zone.js": "~0.9.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "~7.1.4",
"@types/async": "~2.0.50",
"@types/core-js": "~2.5.0",
"@types/hammerjs": "~2.0.36",
"@types/node": "~10.12.18",
"@types/socket.io-client": "~1.4.32",
"babel-core": "~6.26.3",
"babel-preset-es2015": "~6.24.1",
"babel-register": "~6.26.0",
"doctoc": "~1.4.0",
"electron": "4.1.3",
"electron-builder": "~20.38.4",
"electron-packager": "~13.0.1",
"ncp": "~2.0.0",
"node-sass": "~4.13.0",
"replace": "~1.0.1",
"typescript": "~3.1.6"
},
"babel": {
"presets": [
"es2015"
]
},
"main": "dist/electron/main.js",
"build": {
"electronVersion": "4.1.3",
"copyright": "Prixe",
"productName": "Lindo",
"asar": true,
"appId": "co.lindo.no-emu",
"directories": {
"output": "releases"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"locale/**/*",
"package.json",
"CHANGELOG.md"
],
"extraFiles": [],
"mac": {
"target": [
"default"
],
"category": "public.app-category.games"
},
"linux": {
"executableName": "Lindo",
"target": [
"tar.gz"
],
"maintainer": "Prixe"
},
"win": {
"target": [
"zip",
"nsis"
]
},
"nsis": {
"perMachine": false,
"include": "build/installer.nsh"
}
}
}