forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.04 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
{
"name": "ipfs-desktop",
"private": true,
"version": "0.20.5",
"productName": "IPFS Desktop",
"description": "IPFS Native Application",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"lint": "standard",
"test": "cross-env NODE_ENV=test playwright test 'test/unit/.*.spec.js'",
"test:e2e": "xvfb-maybe cross-env NODE_ENV=test playwright test test/e2e/launch.e2e.test.js",
"postinstall": "run-s install-app-deps patch-deps",
"install-app-deps": "electron-builder install-app-deps",
"patch-deps": "patch-package",
"clean": "shx rm -rf node_modules/go-ipfs/bin",
"force-webui-download": "shx rm -rf assets/webui && run-s build:webui",
"build": "run-s clean build:webui",
"build:webui": "run-s build:webui:*",
"build:webui:download": "npx ipfs-or-gateway -c bafybeiednzu62vskme5wpoj4bjjikeg3xovfpp4t7vxk5ty2jxdi4mv4bu -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",
"package": "shx rm -rf dist/ && run-s build && 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 <[email protected]>",
"David Dias <[email protected]>",
"Juan Benet <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Henrique Dias <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-desktop/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-desktop",
"devDependencies": {
"@playwright/test": "^1.20.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"electron": "^18.0.3",
"electron-builder": "22.14.13",
"electron-notarize": "1.2.1",
"electron-notarize-dmg": "1.0.0",
"got": "^12.0.3",
"ipfs-or-gateway": "^3.0.0",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"playwright": "^1.20.2",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"semver-regex": "3.1.3",
"shx": "0.3.4",
"sinon": "^13.0.1",
"standard": "16.0.4",
"tmp": "0.2.1",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"countly-sdk-nodejs": "^20.11.0",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.1",
"electron-updater": "4.6.5",
"fix-path": "3.0.0",
"fs-extra": "^10.0.1",
"go-ipfs": "0.12.2",
"i18next": "^21.6.14",
"i18next-fs-backend": "1.1.4",
"i18next-icu": "^2.0.3",
"intl-messageformat": "^9.12.0",
"ipfs-http-client": "56.0.2",
"ipfsd-ctl": "10.0.6",
"it-last": "^1.0.6",
"multiaddr": "10.0.1",
"multiaddr-to-uri": "8.0.0",
"portfinder": "^1.0.28",
"sudo-prompt": "^9.2.1",
"untildify": "^4.0.0",
"v8-compile-cache": "^2.3.0",
"which": "^2.0.2",
"winston": "^3.7.2",
"yargs": "^17.4.0"
}
}