generated from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.79 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
65
66
67
68
69
70
71
72
73
{
"name": "igv-jbrowse-circularview",
"version": "0.1.2",
"description": "IGV electron wrapper of jBrowse circular view",
"main": "src/main/main.js",
"email": "[email protected]",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"pack": "electron-builder --dir",
"build": "cp node_modules/circular-view/dist/circular-view.js src/renderer/.; electron-builder --macos --linux --windows"
},
"repository": "https://github.com/igvteam/circ-app",
"keywords": [
"genomics"
],
"author": "Jim Robinson",
"license": "MIT",
"dependencies": {
"electron-util": "^0.17.2",
"new-github-issue-url": "^1.0.0"
},
"devDependencies": {
"circular-view": "github:igvteam/circular-view",
"dotenv": "16.0.3",
"electron": "^24.2.0",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.2.2",
"install": "^0.13.0"
},
"build": {
"appId": "igv.org.circview",
"productName": "IGV JBrowse CircularView",
"directories": {
"buildResources": "resources"
},
"afterSign": "scripts/afterSign.js",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"icon": "build/icon.icns"
},
"win": {
"icon": "build/circular-view-logo-512.png"
},
"linux": {
"target": [
"AppImage",
"rpm",
"deb"
],
"maintainer": "Jim Robinson"
},
"dmg": {
"sign": false,
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
}
}