relay/package.json

79 lines
2.7 KiB
JSON
Raw Normal View History

2022-06-27 17:53:00 +00:00
{
"name": "@lumeweb/relay",
"type": "commonjs",
2022-06-27 17:53:00 +00:00
"version": "0.1.0",
"description": "",
"main": "build/index.js",
2022-08-27 01:58:42 +00:00
"types": "src/types.ts",
"author": {
"name": "Derrick Hammer",
"email": "contact@lumeweb.com"
},
"scripts": {
"compile": "tsc",
2022-07-25 06:49:14 +00:00
"prebuild": "bash prebuild.sh",
"bundle": "node build.js",
2022-07-25 06:49:14 +00:00
"package": "pkg -c pkg.json node-dist/index.js -t linux --no-bytecode --public",
"package-debug": "pkg -c pkg.json node-dist/index.js -b -t linux --no-bytecode --public",
"build": "npm run compile && npm run prebuild && npm run bundle && npm run package",
"barebuild": "npm run compile && npm run bundle && npm run package"
},
2022-06-27 17:53:00 +00:00
"dependencies": {
"@hyperswarm/dht": "^6.0.1",
"@hyperswarm/dht-relay": "^0.3.0",
"@lumeweb/kernel-utils": "https://github.com/LumeWeb/kernel-utils.git",
2022-08-24 15:15:07 +00:00
"@lumeweb/pokt-rpc-endpoints": "https://github.com/LumeWeb/pokt-rpc-endpoints.git",
2022-07-04 23:17:58 +00:00
"@pokt-network/pocket-js": "^0.8.0-rc",
"@skynetlabs/skynet-nodejs": "^2.6.0",
2022-07-04 23:17:58 +00:00
"@solana/web3.js": "^1.47.3",
"@types/acme-client": "^3.3.0",
2022-06-27 17:53:00 +00:00
"@types/node": "^18.0.0",
"@types/node-cron": "^3.0.2",
2022-06-27 17:53:00 +00:00
"@types/ws": "^8.5.3",
"acme-client": "^4.2.5",
"ajv": "^8.11.0",
2022-07-05 19:36:18 +00:00
"algosdk": "^1.18.1",
2022-06-27 17:53:00 +00:00
"async-mutex": "^0.3.2",
2022-07-05 19:02:07 +00:00
"bcfg": "^0.1.7",
2022-08-05 04:06:59 +00:00
"blockstore-core": "^1.0.5",
"datastore-core": "^7.0.3",
"date-fns": "^2.28.0",
2022-07-04 23:17:58 +00:00
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"express": "^4.18.1",
"globby": "^13.1.2",
"hsd": "https://github.com/LumeWeb/hsd.git#spv-namestate",
2022-08-05 04:06:59 +00:00
"ipfs-core": "^0.15.4",
"ipfs-http-response": "^3.0.4",
"ipfs-repo": "^14.0.1",
"it-last": "^1.0.6",
"it-to-stream": "^1.0.0",
2022-06-27 17:53:00 +00:00
"json-stable-stringify": "^1.0.1",
2022-07-22 23:51:11 +00:00
"libskynet": "^0.0.62",
2022-06-27 17:53:00 +00:00
"libskynetnode": "^0.1.3",
2022-07-25 06:54:51 +00:00
"loady": "https://github.com/LumeWeb/loady.git",
2022-07-24 00:24:19 +00:00
"loglevel": "^1.8.0",
2022-07-04 23:17:58 +00:00
"minimatch": "^5.1.0",
2022-06-27 17:53:00 +00:00
"msgpackr": "^1.6.1",
"node-cache": "^5.1.2",
"node-cron": "^3.0.1",
"node-fetch": "^3.2.6",
"promise-retry": "^2.0.1",
"random-access-memory": "^4.1.0",
"random-key": "^0.3.2",
2022-09-09 09:18:36 +00:00
"slugify": "^1.6.5"
2022-06-27 17:53:00 +00:00
},
"devDependencies": {
2022-08-29 02:38:56 +00:00
"@lumeweb/relay-types": "https://github.com/LumeWeb/relay-types.git",
"@types/express": "^4.17.13",
2022-07-04 23:17:58 +00:00
"@types/minimatch": "^3.0.5",
"esbuild": "^0.14.49",
2022-06-27 17:53:00 +00:00
"hyper-typings": "^1.0.0",
"pkg": "^5.8.0",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"supports-color": "^9.2.2",
"typescript": "^4.7.4"
2022-06-27 17:53:00 +00:00
}
}