-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "panda-installer",
"version": "1.0.2",
"description": "",
"author": "dzikoysk <dzikoysk@dzikoysk.net>",
"repository": {
"type": "git",
"url": "git+https://github.com/panda-lang/installer.git"
},
"bugs": {
"url": "https://github.com/panda-lang/installer/issues"
},
"homepage": "https://github.com/panda-lang/installer#readme",
"main": "./src/app.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"test": "electron-builder"
},
"build": {
"appId": "org.panda-lang.panda",
"win": {
"target": "portable",
"icon": "src/assets/images/panda.ico"
},
"linux": {
"target": "rpm"
},
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools"
},
"extraResources": [
{
"from": "node_modules/regedit/vbs",
"to": "regedit/vbs",
"filter": [
"**/*"
]
}
]
},
"devDependencies": {
"electron": "^9.0.0",
"electron-builder": "^22.6.1"
},
"dependencies": {
"axios": "^0.19.2",
"electron-pug": "^2.0.0",
"got": "^11.2.0",
"progressbar.js": "^1.1.0",
"regedit": "^3.0.3",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"superagent": "^5.2.2",
"unzipper": "^0.10.11",
"vivus": "^0.4.5"
}
}