78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "@debros/network",
|
|
"version": "0.0.12-alpha",
|
|
"description": "Debros network core functionality for IPFS, libp2p and OrbitDB",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"typings": "types.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"types.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc -w",
|
|
"clean": "rimraf dist",
|
|
"prepublishOnly": "npm run clean && npm run build",
|
|
"prepare": "husky",
|
|
"lint": "npx eslint src"
|
|
},
|
|
"keywords": [
|
|
"ipfs",
|
|
"libp2p",
|
|
"orbitdb",
|
|
"decentralized",
|
|
"p2p",
|
|
"debros"
|
|
],
|
|
"author": "Debros",
|
|
"license": "gnu-gpl-v3.0",
|
|
"dependencies": {
|
|
"@chainsafe/libp2p-gossipsub": "^14.1.0",
|
|
"@chainsafe/libp2p-noise": "^16.1.0",
|
|
"@chainsafe/libp2p-yamux": "^7.0.1",
|
|
"@libp2p/bootstrap": "^11.0.32",
|
|
"@libp2p/crypto": "^5.0.15",
|
|
"@libp2p/identify": "^3.0.27",
|
|
"@libp2p/interface": "^2.7.0",
|
|
"@libp2p/mdns": "^11.0.32",
|
|
"@libp2p/peer-id": "^5.1.0",
|
|
"@libp2p/pubsub": "^10.1.8",
|
|
"@libp2p/tcp": "^10.1.8",
|
|
"@multiformats/multiaddr": "^12.4.0",
|
|
"@orbitdb/core": "^2.5.0",
|
|
"@orbitdb/feed-db": "^1.1.2",
|
|
"blockstore-fs": "^2.0.2",
|
|
"express": "^5.1.0",
|
|
"helia": "^5.3.0",
|
|
"libp2p": "^2.8.2",
|
|
"node-forge": "^1.3.1",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@constl/orbit-db-types": "^2.0.6",
|
|
"@orbitdb/core-types": "^1.0.14",
|
|
"@types/express": "^5.0.1",
|
|
"@types/node": "^22.13.10",
|
|
"@types/node-forge": "^1.3.11",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.5.0",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"compilerOptions": {
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@constl/orbit-db-types"
|
|
],
|
|
"types": [
|
|
"@constl/orbit-db-types"
|
|
]
|
|
}
|
|
}
|