generated from ipfs-examples/example-fork-go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "example-browser-ipns-publish",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "An example demonstrating publishing to IPNS in the browser",
"keywords": [
"IPNS",
"Publish"
],
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-ipfs/examples"
},
"license": "MIT",
"author": "Doug Anderson",
"scripts": {
"clean": "rimraf ./dist ./.cache ./node_modules/.vite",
"build": "vite build",
"serve": "vite dev --port 8888",
"start": "npm run serve",
"test": "npm run build && playwright test tests --retries=3 --timeout=120000"
},
"browserslist": "last 1 Chrome version",
"dependencies": {
"@libp2p/websockets": "^3.0.3",
"ipfs-core": "^0.16.0",
"kubo-rpc-client": "^1.0.1",
"ipfs-utils": "^9.0.6",
"ipns": "^2.0.3",
"it-last": "^1.0.4",
"multiformats": "^9.6.5",
"p-retry": "^5.1.1",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@playwright/test": "^1.12.3",
"delay": "^5.0.0",
"execa": "^6.0.0",
"go-ipfs": "^0.15.0",
"ipfsd-ctl": "^12.0.2",
"playwright": "^1.12.3",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"test-util-ipfs-example": "^1.0.2",
"util": "^0.12.4",
"vite": "^3.1.0"
}
}