This repository has been archived by the owner on Apr 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@open-company/carrot-desktop",
"author": "Open Company",
"version": "1.3.0-3-SNAPSHOT",
"main": "index.js",
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/open-company/open-company-desktop"
},
"scripts": {
"start": "electron .",
"pack": "npx electron-builder --dir",
"dist": "npx electron-builder",
"dev:build": "npm ci && npx shadow-cljs compile desktopapp",
"dev:watch": "npx shadow-cljs watch desktopapp",
"dev:clean": "rm -dfR node_modules/ public/js/* public/cljs-runtime dist/"
},
"build": {
"appId": "io.carrot.desktop",
"productName": "Carrot",
"artifactName": "${productName}.${ext}",
"copyright": "Copyright © 2019-2020 Open Company LLC",
"mac": {
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "public/electron/entitlements.mac.plist",
"entitlementsInherit": "public/electron/entitlements.mac.plist"
},
"dmg": {
"sign": false
},
"win": {
"target": [
"nsis"
],
"icon": "public/carrot.iconset/icon.ico"
},
"nsis": {
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"afterSign": "public/electron/notarize.js",
"icon": "public/carrot.iconset/icon.icns",
"publish": [
"github"
]
},
"devDependencies": {
"dotenv": "^8.0.0",
"electron": "^10.1.3",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.0.0",
"shadow-cljs": "^2.11.5"
},
"dependencies": {
"@sentry/electron": "^2.0.1",
"electron-updater": "^4.3.5"
}
}