harb/services/txnBot/package.json
openhands ad680b8ced fix: address review findings from recenterAccess cleanup (#887)
- Remove permanently unreachable guard branches from evaluateRecenterOpportunity
- Remove orphaned getWalletAddress() from BlockchainService
- Simplify RecenterAccessStatus type: drop always-null recenterAccessAddress
  and slot fields, narrow hasAccess to boolean
- Update /status endpoint to match simplified type
- Remove test script (no test files remain)
- Revert unrelated kraiken-lib/package-lock.json churn

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-17 13:22:10 +00:00

38 lines
1.1 KiB
JSON

{
"name": "marketMaker",
"version": "0.0.1",
"type": "module",
"main": "dist/service.js",
"license": "GPL3",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/service.js",
"dev": "tsx watch src/service.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"type-check": "tsc --noEmit",
"prepare": "husky install || true",
"generate-key": "tsx src/generateKey.ts"
},
"dependencies": {
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"express": "^5.0.0",
"kraiken-lib": "file:../../kraiken-lib"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.6.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}