-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "temporal",
"productName": "Temporal",
"version": "1.5.4",
"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": "^40.6.1",
"electron-builder": "^26.8.1",
"@electron/notarize": "^3.1.1",
"electron-reload": "^1.5.0",
"eslint": "^10.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"electron-updater": "^6.8.3",
"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"
}
}
}