-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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": "parser",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build-mac": "electron-builder --mac --x64",
"build-win": "electron-builder --win --x64",
"build": "npm run build-mac && npm run build-win"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:222/compiler-group/parser.git"
},
"author": "ziyang",
"license": "LICENSE",
"devDependencies": {
"electron": "^8.2.0",
"electron-builder": "^22.4.1"
},
"dependencies": {
"d3": "^3.5.12",
"monaco-editor": "^0.20.0"
},
"build": {
"appId": "top.guoziyang.app",
"mac": {
"icon": "icons/app.icns",
"target": [
"dmg"
]
},
"win": {
"icon": "icons/app.ico",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "icons/app.ico",
"uninstallerIcon": "icons/app.ico",
"installerHeaderIcon": "icons/app.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"license": "LICENSE"
}
}
}