-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
50
51
52
{
"name": "juno",
"description": "Jupyter Notebook stays on macOS menubar.",
"version": "1.0.0",
"author": "Yasuaki Uechi <y@uechi.io>",
"scripts": {
"build": "electron-builder --dir",
"dist": "electron-builder",
"release": "RELEASE=true electron-builder",
"start": "electron .",
"test": "mocha"
},
"dependencies": {
"electron-log": "^4.2.2",
"electron-updater": "^4.3.1"
},
"devDependencies": {
"electron": "^9.3.1",
"electron-builder": "^22.7.0",
"electron-notarize": "^1.0.0",
"is-ci": "^2.0.0",
"mocha": "^8.0.1",
"plist": "^3.0.1",
"spectron": "^11.0.0"
},
"main": "src/main.js",
"repository": "uetchy/juno",
"license": "Apache-2.0",
"build": {
"appId": "io.uechi.juno",
"productName": "Juno",
"directories": {
"buildResources": "./src/build"
},
"files": [
"src/build/tray*",
"src/*.js"
],
"afterPack": "./scripts/after-pack-mac.js",
"afterSign": "./scripts/after-sign-mac.js",
"publish": {
"provider": "github"
},
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"entitlements": "./src/build/entitlements.mac.plist",
"entitlementsInherit": "./src/build/entitlements.mac.plist"
}
},
"private": true
}