forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.31 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ipfs-desktop",
"private": true,
"version": "0.11.4",
"productName": "IPFS Desktop",
"description": "IPFS Native Application",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron src/index.js",
"lint": "standard",
"test": "cross-env NODE_ENV=test mocha test/unit/**/*.spec.js",
"test:e2e": "xvfb-maybe cross-env NODE_ENV=test LIBP2P_ALLOW_WEAK_RSA_KEYS=1 mocha test/e2e/**/*.e2e.js --exit",
"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 clean:webui build:*",
"build:webui": "run-s build:webui:*",
"build:webui:download": "npx ipfs-or-gateway -c bafybeigkbbjnltbd4ewfj7elajsbnjwinyk6tiilczkqsibf3o7dcr6nn4 -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:binaries": "electron-builder --publish onTag",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"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": {
"@svgr/cli": "^5.4.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"delay": "^4.3.0",
"dirty-chai": "^2.0.1",
"dotenv": "^8.2.0",
"electron": "^8.5.2",
"electron-builder": "^22.6.0",
"electron-notarize": "^0.3.0",
"electron-notarize-dmg": "1.0.0",
"got": "^11.1.3",
"ipfs-or-gateway": "^2.1.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"semver-regex": "^3.1.1",
"shx": "^0.3.2",
"sinon": "^9.0.2",
"spectron": "^10.0.1",
"standard": "^14.3.4",
"tar": "^6.0.2",
"tmp": "0.2.1",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"countly-sdk-nodejs": "^19.8.0",
"electron-serve": "^1.0.0",
"electron-store": "^5.1.1",
"electron-updater": "^4.3.1",
"fix-path": "^3.0.0",
"fs-extra": "^9.0.0",
"go-ipfs-dep": "0.5.1",
"i18next": "^19.6.0",
"i18next-electron-language-detector": "0.0.10",
"i18next-icu": "^1.3.1",
"i18next-node-fs-backend": "^2.1.3",
"ipfs-http-client": "^44.0.3",
"ipfsd-ctl": "^4.1.0",
"is-ipfs": "^1.0.3",
"it-all": "^1.0.2",
"it-concat": "^1.0.0",
"multiaddr": "^7.4.3",
"multiaddr-to-uri": "^5.1.0",
"portfinder": "^1.0.26",
"recursive-readdir": "^2.2.2",
"stream-to-pull-stream": "^1.7.3",
"sudo-prompt": "^9.2.1",
"untildify": "^4.0.0",
"v8-compile-cache": "^2.1.0",
"which": "^2.0.2",
"winston": "^3.2.1",
"yargs": "^15.3.1",
"snyk": "^1.366.2"
},
"snyk": true
}