36 líneas
933 B
JSON
36 líneas
933 B
JSON
{
|
|
"name": "ringnet",
|
|
"version": "1.0.0",
|
|
"description": "A decentralized peer-to-peer network implementation using WebRTC for communication in a double ring topology",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"author": "ale",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.manalejandro.com/ale/ringnet"
|
|
},
|
|
"homepage": "https://ringnet.cloud",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"start:oracle": "node oracle.js",
|
|
"start:node": "node node.js",
|
|
"start:dashboard": "cd server && npm start",
|
|
"dashboard:dev": "cd server && npm run dev",
|
|
"example": "node examples/basic-example.js"
|
|
},
|
|
"dependencies": {
|
|
"@koush/wrtc": "^0.5.3",
|
|
"chalk": "^5.3.0",
|
|
"express": "^4.18.2",
|
|
"node-fetch": "^3.3.2",
|
|
"simple-peer": "^9.11.1",
|
|
"uuid": "^9.0.1",
|
|
"ws": "^8.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|