-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "prometheus",
"version": "0.2.0",
"description": "Cross-platform desktop application for Prometheus",
"author": {
"url": "https://iop.global/dsf",
"name": "Internet of People",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"build": {
"appId": "global.iop.prometheus-electron",
"productName": "Prometheus",
"copyright": "Copyright © 2019 Decentralized Society Foundation, PA",
"linux": {
"target": [
"AppImage"
],
"category": "Network",
"icon": "build/icon/",
"desktop": {
"StartupWMClass": "prometheus"
}
},
"mac": {
"category": "public.app-category.productivity",
"target": "dmg",
"icon": "build/icon.icns"
},
"dmg": {
"title": "Prometheus",
"icon": "build/icon.icns"
}
},
"scripts": {
"dev": "electron-webpack dev",
"build-rust-release": "electron-build-env neon build prometheus-neon --release",
"build-rust-dev": "electron-build-env neon build prometheus-neon",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"watch-backend-changes": "watch 'yarn run build-rust-dev' ./../mercury-rust/prometheus/",
"start": "concurrently \"yarn dev\" \"yarn watch-backend-changes\""
},
"dependencies": {
"concurrently": "4.1.2",
"prometheus-neon": "./upstream/prometheus-neon",
"source-map-support": "0.5.12",
"vue": "2.6.10",
"watch": "1.0.2"
},
"devDependencies": {
"css-loader": "3.0.0",
"electron": "5.0.6",
"electron-build-env": "0.2.0",
"electron-builder": "21.0.15",
"electron-webpack": "2.7.2",
"electron-webpack-vue": "2.3.0",
"node-sass": "4.9.0",
"sass-loader": "7.1.0",
"webpack": "4.35.0"
},
"electronWebpack": {
"title": "Prometheus",
"main": {
"webpackConfig": "webpack.main.config.js",
"extraEntries": [
"@/preload.js"
]
},
"renderer": {
"webpackConfig": "webpack.renderer.config.js",
"sourceDirectory": "../prometheus-ui/src"
}
}
}