-
Notifications
You must be signed in to change notification settings - Fork 865
/
package.json
114 lines (114 loc) · 3.8 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
110
111
112
113
114
{
"name": "ipfs-desktop",
"private": true,
"version": "0.39.0",
"productName": "IPFS Desktop",
"description": "IPFS Native Application",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"lint": "ts-standard && standard",
"lint:fix": "ts-standard --fix && standard --fix",
"test": "cross-env NODE_ENV=test playwright test 'test/unit/.*.spec.js'",
"test:e2e": "xvfb-maybe cross-env NODE_ENV=test playwright test -c test/e2e/playwright.config.js",
"postinstall": "run-s install-app-deps patch-deps macos-universal-kubo",
"install-app-deps": "electron-builder install-app-deps",
"macos-universal-kubo": "node pkgs/macos/build-universal-kubo-binary.js",
"patch-deps": "patch-package",
"clean": "shx rm -rf node_modules/kubo/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 bafybeid4uxz7klxcu3ffsnmn64r7ihvysamlj4ohl5h2orjsffuegcpaeq -p assets/webui/ -t 360000 --verbose -g \"https://trustless-gateway.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",
"release-pr": "release-please release-pr --token=$GITHUB_TOKEN --plugin '@ipfs-shipyard/release-please-ipfs-plugin' --repo-url=ipfs/ipfs-desktop --trace --debug --draft-pull-request",
"release-gh": "release-please github-release --token=$GITHUB_TOKEN --plugin '@ipfs-shipyard/release-please-ipfs-plugin' --repo-url=ipfs/ipfs-desktop --trace --debug --draft"
},
"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": {
"@electron/notarize": "^1.2.3",
"@ipfs-shipyard/release-please-ipfs-plugin": "^1.0.0",
"@playwright/test": "^1.44.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"electron": "^32.2.0",
"electron-builder": "^25.1.8",
"got": "^12.0.3",
"ipfs-or-gateway": "^4.1.0",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.1",
"playwright": "^1.44.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"semver-regex": "3.1.4",
"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.1.0",
"electron-updater": "^6.3.9",
"fix-path": "3.0.0",
"fs-extra": "^10.0.1",
"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",
"ipfs-utils": "^9.0.10",
"ipfsd-ctl": "10.0.6",
"it-last": "^1.0.6",
"kubo": "0.31.0",
"multiaddr": "10.0.1",
"multiaddr-to-uri": "8.0.0",
"portfinder": "^1.0.28",
"untildify": "^4.0.0",
"v8-compile-cache": "^2.4.0",
"winston": "^3.7.2"
},
"standard": {
"ignore": [
"**/*.ts"
]
},
"ts-standard": {
"project": "tsconfig.json",
"files": [
"types/*.ts"
],
"ignore": [
"**/*.js"
]
}
}