-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.33 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
56
57
58
59
60
61
{
"name": "planner",
"version": "1.0.1",
"description": "A simple time management app",
"author": "Tudor Butufei",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/i2002/planner"
},
"keywords": [
"planner",
"time",
"organizing",
"pomodoro"
],
"main": "index.html",
"window": {
"width": 1200,
"height": 700,
"icon": "res/img/planner.png"
},
"scripts": {
"start": "node_modules/.bin/nw .",
"build": "sh .tools/build.sh"
},
"dependencies": {
"freedesktop-notifications": "^1.2.3"
},
"devDependencies": {
"nwjs-builder-phoenix": "^1.14.6",
"nwjs": "^1.4.4"
},
"build": {
"buildDir": "dist/",
"targets": [
"nsis",
"zip"
],
"nwVersion": "0.32.4",
"appName": "Planner",
"outputPattern": "${NAME}_v${VERSION}_${PLATFORM}-${ARCH}",
"appId": "com.i2002.planner",
"win": {
"companyName": "i2002",
"productName": "Planner",
"copyright": "(C) 2018 Tudor Butufei",
"icon": "res/img/planner.ico"
},
"mac": {
"displayName": "Planner",
"name": "Planner",
"description": "A simple time management app",
"copyright": "Copyright © 2018 Tudor Butufei",
"icon": "res/img/planner.icns"
},
"nsis": {
"icon": "res/img/planner.ico"
}
}
}