forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.22 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.24.0",
"productName": "IPFS Desktop",
"description": "IPFS Native Application",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"lint": "ts-standard && 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 bafybeiavrvt53fks6u32n5p2morgblcmck4bh4ymf4rrwu7ah5zsykmqqa -p assets/webui/ -t 360000 --verbose -g \"https://dweb.link\" ",
"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 <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": {
"@playwright/test": "^1.24.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"electron": "^19.0.9",
"electron-builder": "^23.1.0",
"electron-notarize": "1.2.1",
"electron-notarize-dmg": "1.0.0",
"got": "^12.0.3",
"ipfs-or-gateway": "^4.1.0",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"playwright": "^1.24.0",
"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",
"ts-standard": "^11.0.0",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"countly-sdk-nodejs": "^20.11.0",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.2",
"electron-updater": "^5.0.5",
"fix-path": "3.0.0",
"fs-extra": "^10.0.1",
"go-ipfs": "0.16.0",
"i18next": "^21.8.14",
"i18next-fs-backend": "1.1.4",
"i18next-icu": "^2.0.3",
"intl-messageformat": "^9.13.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",
"untildify": "^4.0.0",
"v8-compile-cache": "^2.3.0",
"winston": "^3.7.2"
},
"standard": {
"ignore": [
"**/*.ts"
]
},
"ts-standard": {
"project": "tsconfig.json",
"files": [
"types/*.ts"
],
"ignore": [
"**/*.js"
]
}
}