network/package.json

107 lines
3.0 KiB
JSON

{
"name": "@debros/network",
"version": "0.5.1-beta",
"description": "DebrosFramework - A powerful Node.js framework providing ORM-like abstraction over OrbitDB and IPFS for building scalable decentralized applications",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "types.d.ts",
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"build": "tsc && tsc-esm-fix --outDir=./dist/esm",
"dev": "tsc -w",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky",
"lint": "npx eslint src",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"lint:fix": "npx eslint src --fix",
"test:unit": "jest tests/unit",
"test:blog-integration": "jest --config=jest.integration.config.cjs tests/real-integration/blog-scenario/tests",
"test:real": "docker-compose -f tests/real-integration/blog-scenario/docker/docker-compose.blog.yml up --build --abort-on-container-exit"
},
"keywords": [
"debros",
"framework",
"orm",
"decentralized",
"ipfs",
"orbitdb",
"p2p",
"typescript",
"models",
"query-builder",
"sharding",
"dapp",
"distributed"
],
"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",
"@helia/unixfs": "^5.0.0",
"@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",
"datastore-fs": "^10.0.4",
"express": "^5.1.0",
"helia": "^5.3.0",
"libp2p": "^2.8.2",
"multiformats": "^13.3.2",
"node-cache": "^5.1.2",
"node-forge": "^1.3.1",
"winston": "^3.17.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@ipshipyard/node-datachannel",
"classic-level"
]
},
"devDependencies": {
"axios": "^1.6.0",
"@eslint/js": "^9.24.0",
"@jest/globals": "^30.0.1",
"@orbitdb/core-types": "^1.0.14",
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.13.10",
"@types/node-fetch": "^2.6.7",
"@types/node-forge": "^1.3.11",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"husky": "^8.0.3",
"jest": "^30.0.1",
"lint-staged": "^15.5.0",
"node-fetch": "^2.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.0",
"tsc-esm-fix": "^3.1.2",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
}
}