-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "dag.w3s.link",
"version": "1.1.4",
"description": "IPFS HTTP Gateway exposing the Graph API, and nothing else.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "npm run build:debug && miniflare dist/worker.mjs --watch --debug -m",
"build": "esbuild --bundle src/index.js --format=esm --sourcemap --minify --outfile=dist/worker.mjs",
"build:debug": "esbuild --bundle src/index.js --format=esm --outfile=dist/worker.mjs",
"test": "npm run build:debug && ava --verbose --node-arguments='--experimental-vm-modules'",
"lint": "standard"
},
"keywords": [
"IPFS",
"gateway",
"CAR",
"CID",
"IPLD",
"UnixFS"
],
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"@web3-storage/gateway-lib": "^3.2.4"
},
"devDependencies": {
"ava": "^5.2.0",
"esbuild": "^0.17.11",
"miniflare": "^2.9.0",
"multiformats": "^11.0.2",
"standard": "^17.0.0",
"uint8arrays": "^4.0.3"
},
"standard": {
"ignore": [
"*.ts"
]
}
}