forked from v2018z/studyxixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.47 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
{
"name": "sdudyxixi",
"version": "1.1.2",
"author": "jax.xie <[email protected]>",
"main": "./dist/main.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "chcp 65001 && npm run build && electron ./dist/main.js",
"start:mac": "npm run build && electron ./dist/main.js",
"build:mac": "npm run build && electron-builder",
"build:win": "npm run build && electron-builder --win",
"build:linux": "npm run build && electron-builder --linux"
},
"build": {
"productName": "学习强国V2.1",
"appId": "org.jax.study.xixi",
"directories": {
"output": "build"
},
"mac": {
"target": ["dmg"]
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"devDependencies": {
"@types/js-base64": "^2.3.1",
"@types/js-cookie": "^2.2.6",
"@types/lodash": "^4.14.151",
"@types/node": "10.17.0",
"@types/qs": "^6.9.2",
"electron": "8.2.5",
"electron-builder": "22.6.1",
"electron-updater": "4.3.1",
"path": "^0.12.7",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"dependencies": {
"js-base64": "2.5.2",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"qs": "^6.9.4"
}
}