-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 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
{
"name": "keeptive",
"version": "1.2.1",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [],
"author": "Hyper Light",
"license": "ISC",
"dependencies": {
"iconv-lite": "^0.7.0"
},
"devDependencies": {
"electron": "^39.1.0",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.keeptive.app",
"productName": "Keeptive",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"src/**/*",
"!src/python/**/*",
"!src/*.py"
],
"extraFiles": [
{
"from": "src/python",
"to": "src/python",
"filter": [
"**/*"
]
},
{
"from": "src",
"to": "src",
"filter": [
"*.py"
]
}
],
"win": {
"target": "portable",
"compression": "normal",
"icon": "src/assets/icon-active.ico"
}
}
}