-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 3.2 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
{
"name": "helia-service-worker-gateway",
"version": "1.4.1",
"private": true,
"type": "module",
"description": "An IPFS Gateway that uses @helia/verified-fetch in a Service Worker to fetch content",
"keywords": [],
"license": "MIT",
"scripts": {
"reset": "npm run clean -- **/node_modules **/package-lock.json",
"clean": "aegir clean dist dist-tsc test-e2e/fixtures/data/gateway-conformance-fixtures test-e2e/fixtures/data/test-repo",
"dep-check": "aegir dep-check",
"lint": "aegir lint",
"lint:fix": "aegir lint --fix",
"build": "run-s build:tsc build:esbuild",
"build:tsc": "tsc",
"build:esbuild": "node build.js",
"start": "node build.js --watch --serve",
"test": "run-s test:iso 'test:node -- -b false'",
"test:iso": "aegir test -f dist-tsc/test/**/*.spec.js",
"test:browsers": "playwright test -c playwright.config.js",
"test:chrome": "playwright test -c playwright.config.js --project chromium",
"test:firefox": "playwright test -c playwright.config.js --project firefox",
"test:deployed": "playwright test -c playwright.config.js --project deployed",
"test:inbrowser-dev": "cross-env BASE_URL='https://inbrowser.dev' playwright test -c playwright.config.js --project deployed",
"test:inbrowser-prod": "cross-env BASE_URL='https://inbrowser.link' playwright test -c playwright.config.js --project deployed",
"test:node": "aegir test -t node -f dist-tsc/test/node.js --cov",
"postinstall": "patch-package"
},
"browser": "./dist/src/index.js",
"browserslist": [
"last 1 Chrome version"
],
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@helia/block-brokers": "^4.0.1",
"@helia/delegated-routing-v1-http-api-client": "^4.1.1",
"@helia/http": "^2.0.1",
"@helia/interface": "^5.0.0",
"@helia/routers": "^2.1.0",
"@helia/verified-fetch": "^2.0.1",
"@libp2p/crypto": "^5.0.6",
"@libp2p/dcutr": "^2.0.10",
"@libp2p/identify": "^3.0.10",
"@libp2p/keychain": "^5.0.9",
"@libp2p/logger": "^5.1.3",
"@libp2p/ping": "^2.0.10",
"@libp2p/websockets": "^9.0.11",
"@libp2p/webtransport": "^5.0.16",
"@multiformats/dns": "^1.0.6",
"@sgtpooki/file-type": "^1.0.1",
"helia": "^5.1.0",
"ipfs-css": "^1.4.0",
"libp2p": "^2.2.1",
"multiformats": "^13.1.0",
"react": "^18.3.0",
"react-dom": "^18.3.1",
"tachyons": "^4.12.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@playwright/test": "^1.42.1",
"@types/react": "^18.3.0",
"aegir": "^42.2.9",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"execa": "^8.0.1",
"glob": "^10.3.12",
"http-server": "^14.1.1",
"ipfsd-ctl": "^13.0.0",
"kubo": "^0.27.0",
"kubo-rpc-client": "^5.0.2",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"playwright": "^1.45.3",
"rimraf": "^5.0.5"
},
"sideEffects": [
"*.css"
]
}