This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "holoscape",
"version": "0.0.10",
"description": "A complete end-user deployment of a Holochain conductor with UI for administration and a run-time for hApp UIs.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"start:dev": "DEV=true electron .",
"build-mac": "electron-packager . Holoscape --platform=darwin --overwrite --icon=./images/HoloScape-hdpi.icns",
"build-linux": "electron-packager . Holoscape --platform=linux --overwrite --icon=./images/HoloScape-hdpi.png",
"delete:app-support": "rm -rf '$HOME/Library/Application Support/holoscape' && rm -rf '$HOME/Library/Application Support/Holoscape-default'"
},
"author": "Holochain Core Dev Team <devcore@holochain.org>",
"license": "GPL-3.0-or-later",
"devDependencies": {
"deepmerge": "^4.2.2",
"electron": "^8.2.0",
"electron-packager": "^14.2.1",
"electron-webpack": "^2.7.4",
"fibers": "^4.0.2",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vuetify-loader": "^1.4.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@holochain/hc-web-client": "^0.5.1",
"@iarna/toml": "^2.2.3",
"adm-zip": "^0.4.13",
"ansi-to-html": "^0.6.11",
"bootstrap": "^4.3.1",
"extract-zip": "^1.6.7",
"get-port": "^5.0.0",
"get-uri": "^2.0.3",
"jquery": "^3.4.1",
"menubar": "^8.0.1",
"mousetrap": "^1.6.3",
"mustache": "^3.0.1",
"ncp": "^2.0.0",
"popper.js": "^1.16.0",
"request": "^2.88.0",
"temp": "^0.9.0",
"toml": "^3.0.0",
"underscore": "^1.9.1",
"vue": "^2.6.10",
"vue-chat-scroll": "^1.3.6",
"vuetify": "^2.1.13"
},
"build": {
"appId": "org.holochain.holoscape",
"mac": {
"category": "org.holochain.holoscape"
}
}
}