forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.95 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ipfs-desktop",
"private": true,
"version": "0.9.0-dev",
"productName": "IPFS Desktop",
"description": "IPFS Native Application",
"main": "out/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron -r @babel/register src/index.js",
"lint": "standard",
"test": "cross-env NODE_ENV=test mocha",
"postinstall": "run-s install-app-deps build:webui",
"install-app-deps": "electron-builder install-app-deps",
"clean:webui": "shx rm -rf assets/webui/",
"build": "run-s build:*",
"build:webui": "run-s build:webui:*",
"build:webui:download": "npx ipfs-or-gateway -c QmXPQo3n4doS332n7CPVV7M9AwyX1WCH75vqeXg4NCKmbd -p assets/webui/ -t 360000 --verbose",
"build:webui:minimize": "shx rm -rf assets/webui/static/js/*.map && shx rm -rf assets/webui/static/css/*.map",
"build:babel": "babel src --out-dir out --copy-files",
"build:binaries": "electron-builder --publish onTag"
},
"pre-commit": [
"lint"
],
"keywords": [
"ipfs",
"station",
"desktop",
"app"
],
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/ipfs-desktop"
},
"author": "Protocol Labs, Inc.",
"contributors": [
"Kristoffer Ström <kristoffer@rymdkoloni.se>",
"David Dias <daviddias@ipfs.io>",
"Juan Benet <juan@ipfs.io>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Henrique Dias <hacdias@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-desktop/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-desktop",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@svgr/cli": "^4.3.2",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"delay": "^4.3.0",
"dirty-chai": "^2.0.1",
"electron": "^5.0.8",
"electron-builder": "^21.1.5",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"shx": "^0.3.2",
"spectron": "^7.0.0",
"standard": "^13.1.0",
"tar": "^4.4.10",
"tmp": "0.1.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"auto-launch": "^5.0.5",
"electron-serve": "^0.3.0",
"electron-store": "^4.0.0",
"electron-updater": "^4.1.2",
"fix-path": "^2.1.0",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"go-ipfs-dep": "0.4.22-rc1",
"i18next": "^17.0.6",
"i18next-electron-language-detector": "0.0.10",
"i18next-icu": "^1.1.2",
"i18next-node-fs-backend": "^2.1.3",
"ipfsd-ctl": "^0.44.1",
"is-ipfs": "^0.6.1",
"multiaddr": "^6.1.0",
"multiaddr-to-uri": "^4.0.1",
"recursive-readdir": "^2.2.2",
"stream-to-pull-stream": "^1.7.3",
"sudo-prompt": "^9.0.0",
"which": "^1.3.1",
"winston": "^3.2.1",
"yargs": "^13.3.0"
}
}