-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 KB
/
package.json
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": "Temporal",
"version": "1.5.3",
"description": "Transient Note Taking",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron --inspect=7070 .",
"break": "electron --inspect-brk=7070 .",
"buildMac": "electron-builder -m --x64 --arm64",
"releaseMac": "electron-builder -m -p 'onTagOrDraft'"
},
"repository": "https://github.com/jtvberg/Temporal",
"homepage": "https://github.com/jtvberg/Temporal",
"keywords": [
"Electron",
"notes"
],
"author": "jtvberg",
"license": "MIT",
"devDependencies": {
"electron": "^22.3.27",
"electron-builder": "^24.6.4",
"@electron/notarize": "^2.1.0",
"electron-reload": "^1.5.0",
"eslint": "^8.51.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"electron-updater": "^6.1.4",
"jquery": "^3.7.1"
},
"build": {
"appId": "com.jtvberg.temporal",
"copyright": "Copyright jtvberg",
"afterSign": "./build/afterSign.js",
"mac": {
"category": "public.app-category.productivity"
},
"publish": {
"provider": "github"
}
}
}