-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.62 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.62 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "calendar-notes",
"productName": "Calendar Notes",
"version": "2.3.3",
"description": "Calendar Notes - A daily notes application with markdown support",
"type": "module",
"main": "dist/main/main.js",
"author": {
"name": "Dave Hunt",
"email": "dhuntlinux@gmail.com"
},
"homepage": "https://github.com/dhunt84971/CalendarNotes",
"repository": "https://github.com/dhunt84971/CalendarNotes",
"license": "MIT",
"scripts": {
"dev": "ELECTRON_DISABLE_SANDBOX=1 electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron-vite dev",
"postinstall": "electron-builder install-app-deps",
"dist": "electron-vite build && electron-builder",
"dist:win": "electron-vite build && electron-builder --win",
"dist:linux": "electron-vite build && electron-builder --linux",
"dist:mac": "electron-vite build && electron-builder --mac",
"lint": "eslint src/"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"vite": "^5.0.10"
},
"dependencies": {
"better-sqlite3": "^9.2.2",
"docx": "^9.6.1",
"marked": "^11.1.1"
},
"build": {
"appId": "com.calendarnotes.app",
"productName": "CalendarNotes",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"build/icons/**/*",
"build/calendarNotes.ico"
],
"linux": {
"target": [
"deb"
],
"executableName": "calendar-notes",
"category": "Office",
"maintainer": "Dave Hunt <dhuntlinux@gmail.com>",
"icon": "build/icons",
"desktop": {
"Name": "Calendar Notes",
"Comment": "A daily notes application with markdown support",
"Categories": "Office;Utility;TextEditor"
}
},
"deb": {
"depends": [
"libgtk-3-0 | libgtk-3-0t64",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0 | libatspi2.0-0t64",
"libuuid1",
"libsecret-1-0"
]
},
"win": {
"target": {
"target": "nsis",
"arch": [
"x64"
]
},
"icon": "build/calendarNotes.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/calendarNotes.ico",
"uninstallerIcon": "build/calendarNotes.ico",
"installerHeaderIcon": "build/calendarNotes.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Calendar Notes"
}
}
}