-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "tasknoteapp",
"version": "1.0.0",
"description": "Task and Notes Application",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --win"
},
"build": {
"appId": "com.rasin.tasknoteapp",
"productName": "TaskNote",
"win": {
"target": ["nsis", "portable", "dir"],
"icon": "notepad.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"dashboard.js",
"index.html",
"dashboard.html",
"style.css",
"dashboard.css",
"category.html",
"category.js",
"task_form.html",
"task_form.js",
"notepad.ico",
"notepad.png",
"notepad.webp",
"package.json"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"electron-winstaller": "^5.4.0"
},
"dependencies": {
"jimp": "^0.16.1"
}
}