-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
45
46
47
48
{
"name": "TidyPaste",
"version": "1.0.3",
"description": "Tidy Pasting",
"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": {
"type": "git",
"url": "git+https://github.com/jtvberg/TidyPaste.git"
},
"bugs": {
"url": "https://github.com/jtvberg/TidyPaste/issues"
},
"homepage": "https://github.com/jtvberg/TidyPaste",
"keywords": [
"Electron",
"clipboard"
],
"author": "jtvberg",
"license": "MIT",
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"@electron/notarize": "^2.2.0",
"electron-reload": "^1.5.0",
"eslint": "^9.17.0"
},
"dependencies": {
"electron-updater": "^6.1.7"
},
"build": {
"appId": "com.jtvberg.tidypaste",
"copyright": "Copyright jtvberg",
"afterSign": "./build/afterSign.js",
"mac": {
"category": "public.app-category.productivity"
},
"publish": {
"provider": "github"
}
}
}