forked from tmoreno/open-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.22 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
{
"name": "open-log-viewer",
"version": "1.5.0",
"author": "Tomás Moreno Bernal <@tmorenobernal>",
"homepage": "https://github.com/tmoreno/open-log-viewer",
"license": "GPL-3.0-only",
"main": "main.js",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --watch",
"start": "electron .",
"start:dev": "cross-env NODE_ENV=development npm run start",
"pack:win": "electron-builder --win --dir",
"pack:mac": "electron-builder --mac --dir",
"pack:linux": "electron-builder --linux --dir",
"dist": "electron-builder -mwl",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux"
},
"build": {
"appId": "com.tmoreno.openlogviewer",
"artifactName": "${name}_${version}.${ext}",
"files": [
"main.js",
"preload.js",
"mainMenu.js",
"app/index.html",
"app/images/*.*",
"dist/build.js"
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"rpm",
"deb"
],
"desktop": {
"Type": "Application",
"Encoding": "UTF-8",
"Name": "Open Log Viewer",
"Comment": "A multi-platform log viewer built with Electron and styled with Material Design",
"Categories": "Utility;"
}
},
"win": {
"target": "portable"
}
},
"dependencies": {
"ace-builds": "1.4.8",
"commander": "6.2.1",
"electron-store": "5.1.1",
"lodash": "4.17.15",
"material-design-icons-iconfont": "5.0.1",
"typeface-roboto": "0.0.75",
"vue": "2.6.11",
"vue-color": "2.7.1",
"vue-i18n": "8.15.5",
"vuetify": "1.5.24"
},
"devDependencies": {
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"electron": "8.1.1",
"electron-builder": "22.4.1",
"electron-reload": "1.5.0",
"file-loader": "6.0.0",
"style-loader": "1.1.3",
"url-loader": "4.0.0",
"vue-loader": "15.9.1",
"vue-template-compiler": "2.6.11",
"webpack": "4.42.0",
"webpack-cli": "3.3.11"
}
}