-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 KB
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
{
"name": "JustWeather",
"author": {
"name": "Dmtry Antonov",
"email": "dmtry.antonov@gmail.com"
},
"version": "1.0.0",
"description": "Simple weather widget",
"main": "index.js",
"scripts": {
"start": "electron-webpack dev",
"build": "electron-webpack && electron-builder"
},
"dependencies": {
"axios": "^0.16.2",
"electron-json-config": "^1.5.3",
"source-map-support": "^0.5.6"
},
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"electron": "^4.0.0",
"electron-builder": "^20.15.1",
"electron-webpack": "^2.1.2",
"vue": "^2.5.16",
"vue-loader": "^15.2.2",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.9.1"
},
"build": {
"appId": "com.github.dmtryjs",
"win": {
"target": "nsis",
"asar": false,
"icon": ".\\static\\img\\weather.ico"
},
"extraResources": [
{
"from": "./src/assets/img/",
"to": "assets/img",
"filter": [
"**/*"
]
},
{
"from": "./src/assets/",
"to": "assets",
"filter": [
"*.json"
]
}
]
}
}