-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "jupyter-desktop",
"version": "0.0.1",
"author": "Alan Chen",
"license": "MIT",
"productName": "Jupyter Desktop",
"repository": "https://github.com/alanzchen/jupyter-desktop",
"homepage": "https://github.com/alanzchen/jupyter-desktop",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"fix-path": "^3.0.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "10.1.5",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"webpack": "~4.42.1"
},
"build": {
"appId": "com.alanchen.jupyter-desktop",
"mac": {
"category": "public.app-category.developer-tools",
"extendInfo": {
"CFBundleDocumentTypes": [
{
"CFBundleTypeName": "Folders",
"CFBundleTypeRole": "Viewer",
"LSHandlerRank": "Alternate",
"LSItemContentTypes": [
"public.folder",
"com.apple.bundle",
"com.apple.package",
"com.apple.resolvable"
]
}
]
}
}
}
}