node/package.json
2025-04-08 14:43:01 +03:00

99 lines
2.6 KiB
JSON

{
"name": "@debros/node",
"type": "module",
"version": "0.0.20-alpha",
"description": "DeBros Node",
"main": "dist/index.js",
"bin": "dist/cli.js",
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "bin",
"assets": [
"dist/**/*"
]
},
"scripts": {
"dev": "npx tsx ./src/server.ts",
"dev:with-anyone": "npx tsx ./src/server.ts",
"start": "NODE_ENV=production node dist/server.js",
"lint": "npx eslint src",
"build": "npx tsc -p tsconfig.json && npx tsc-esm-fix --target=dist --outDir=dist",
"test": "NODE_ENV=test jest --coverageReporters='text-summary'",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.6.2",
"dependencies": {
"@anyone-protocol/anyone-client": "^0.4.4",
"@debros/cli": "^0.0.11-alpha",
"@debros/network": "^0.0.22-alpha",
"@helia/unixfs": "^4.0.3",
"@libp2p/bootstrap": "^11.0.32",
"@libp2p/crypto": "^5.0.15",
"@libp2p/mdns": "^11.0.32",
"@libp2p/peer-id": "^5.1.0",
"@libp2p/pubsub": "^10.1.8",
"@multiformats/multiaddr": "^12.4.0",
"cors": "^2.8.5",
"ethers": "^6.13.5",
"express": "^4.21.2",
"filesize-parser": "^1.5.1",
"helia": "^5.3.0",
"https-proxy-agent": "^7.0.6",
"libp2p": "^2.8.2",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.2",
"socket.io": "^4.8.1",
"socks": "^2.8.4",
"socks-proxy-agent": "^8.0.5",
"typescript": "^5.8.2",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/filesize-parser": "^1.5.3",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.10",
"@types/node-forge": "^1.3.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"eslint-plugin-prettier": "^5.2.5",
"globals": "^16.0.0",
"husky": "^9.1.7",
"inquirer": "^12.5.0",
"nodemon": "^3.1.9",
"pkg": "^5.8.1",
"prettier": "^3.5.3",
"simple-git": "^3.27.0",
"ts-node": "^10.9.2",
"tsc-esm-fix": "^3.1.2",
"typescript-eslint": "^8.29.0"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@ipshipyard/node-datachannel",
"classic-level"
],
"onlyBuiltDependencies": [
"@anyone-protocol/anyone-client",
"@ipshipyard/node-datachannel",
"classic-level"
]
}
}