-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"name": "Journee",
"productName": "Journee",
"description": "A Daily Journal App",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/adueck/journee"
},
"keywords": [
"journal",
"diary",
"notebook",
"note"
],
"author": "Adam Dueck",
"license": "Apache-2.0",
"main": "main.js",
"dependencies": {
"electron-json-storage": "^3.0.1",
"electron-window-state": "^4.0.2"
},
"devDependencies": {
"electron": "^1.4.15",
"electron-builder": "^13.11.1"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"dist": "build --win",
"distl": "build -l"
},
"build": {
"synopsis": "A daily journal app",
"appId": "com.adueck.journee",
"nsis": {
"artifactName": "${productName}-${version}-setup.${ext}",
"deleteAppDataOnUninstall": true
},
"asar": true,
"forceCodeSigning": false
}
}