2017-07-04 11:43:45 +01:00
|
|
|
{
|
2017-07-09 16:52:37 +01:00
|
|
|
"name": "libp2p-in-the-browser",
|
|
|
|
"version": "0.1.0",
|
2017-07-05 12:12:51 +01:00
|
|
|
"description": "See other nodes in the network using WebRTC Star discovery mechanism",
|
2017-07-04 11:43:45 +01:00
|
|
|
"main": "src/index.js",
|
|
|
|
"scripts": {
|
2017-07-05 12:12:51 +01:00
|
|
|
"bundle": "browserify src/index.js > public/bundle.js",
|
2017-07-04 11:43:45 +01:00
|
|
|
"serve": "static public -p 9090 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}'",
|
|
|
|
"start": "npm run bundle && npm run serve"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2017-11-04 16:21:11 +00:00
|
|
|
"browserify": "^14.5.0",
|
2017-07-04 11:43:45 +01:00
|
|
|
"concat-stream": "^1.6.0",
|
|
|
|
"detect-dom-ready": "^1.0.2",
|
2018-06-28 10:06:25 +02:00
|
|
|
"node-static": "~0.7.10"
|
2017-07-04 11:43:45 +01:00
|
|
|
},
|
2017-07-09 16:52:37 +01:00
|
|
|
"dependencies": {
|
|
|
|
"detect-dom-ready": "^1.0.2",
|
2019-07-30 12:38:02 +02:00
|
|
|
"libp2p": "../../../",
|
2019-04-11 15:52:04 +02:00
|
|
|
"libp2p-bootstrap": "~0.9.7",
|
2019-07-31 18:47:30 +02:00
|
|
|
"libp2p-gossipsub": "~0.0.4",
|
2019-07-30 12:38:02 +02:00
|
|
|
"libp2p-kad-dht": "^0.15.3",
|
2019-04-11 15:52:04 +02:00
|
|
|
"libp2p-mplex": "~0.8.5",
|
|
|
|
"libp2p-secio": "~0.11.1",
|
|
|
|
"libp2p-spdy": "~0.13.3",
|
|
|
|
"libp2p-webrtc-star": "~0.15.8",
|
|
|
|
"libp2p-websocket-star": "~0.10.2",
|
|
|
|
"libp2p-websockets": "~0.12.2",
|
2019-02-06 04:59:42 +10:00
|
|
|
"peer-info": "~0.15.1"
|
2017-07-09 16:52:37 +01:00
|
|
|
}
|
2017-07-04 11:43:45 +01:00
|
|
|
}
|