forked from ipfs-examples/helia-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 799 Bytes
/
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
{
"name": "helia-esbuild",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Bundle Helia with esbuild",
"keywords": [],
"license": "ISC",
"author": "",
"scripts": {
"clean": "rimraf ./dist",
"build": "mkdir -p dist && cp src/index.html src/style.css dist && node esbuild.js",
"start": "npm run build && esbuild --servedir=dist",
"test": "npm run build && test-browser-example test"
},
"browserslist": "last 1 Chrome version",
"dependencies": {
"@helia/unixfs": "^1.4.1",
"helia": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@playwright/test": "^1.12.3",
"esbuild": "^0.17.16",
"playwright": "^1.12.3",
"process": "^0.11.10",
"rimraf": "^5.0.0",
"test-ipfs-example": "^1.0.0"
}
}