-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "tidypaste",
"productName": "Tidy Paste",
"version": "1.0.4",
"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": "^40.6.1",
"electron-builder": "^26.8.1",
"@electron/notarize": "^3.1.1",
"electron-reload": "^1.5.0",
"eslint": "^10.0.2"
},
"dependencies": {
"electron-updater": "^6.8.3"
},
"build": {
"appId": "com.jtvberg.tidypaste",
"copyright": "Copyright jtvberg",
"afterSign": "./build/afterSign.js",
"mac": {
"category": "public.app-category.productivity"
},
"publish": {
"provider": "github"
}
}
}