-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 933 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
31
{
"name": "www-helia-identify",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Run identify with a peer with Helia in a browser",
"license": "ISC",
"scripts": {
"clean": "rimraf ./dist",
"copy-assets": "mkdir -p dist && cp src/index.html src/style.css dist",
"build": "npm run copy-assets && node esbuild.js",
"start": "npm run copy-assets && node esbuild.js --serve",
"test": "npm run build && test-browser-example test"
},
"browserslist": "last 1 Chrome version",
"dependencies": {
"@libp2p/devtools-metrics": "^1.1.8",
"@libp2p/identify": "^3.0.10",
"@libp2p/peer-id": "^5.0.7",
"@libp2p/webtransport": "^5.0.22",
"@multiformats/multiaddr": "^12.3.1",
"helia": "^5.1.0",
"multiformats": "^13.3.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}