- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "rpc-translator-138",
|
|
"version": "1.0.0",
|
|
"description": "RPC Translator Service for ChainID 138 - Thirdweb compatibility with eth_sendTransaction support",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/main.js",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
|
|
"test": "jest",
|
|
"validate": "node scripts/validate-config.js",
|
|
"setup": "./scripts/setup.sh"
|
|
},
|
|
"keywords": [
|
|
"rpc",
|
|
"translator",
|
|
"ethereum",
|
|
"json-rpc",
|
|
"websocket",
|
|
"besu",
|
|
"web3signer"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"ws": "^8.14.2",
|
|
"ethers": "^6.9.0",
|
|
"ioredis": "^5.3.2",
|
|
"node-vault": "^0.10.0",
|
|
"axios": "^1.6.2",
|
|
"dotenv": "^16.3.1",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/ws": "^8.5.10",
|
|
"@types/uuid": "^9.0.7",
|
|
"typescript": "^5.3.3",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|