package.json 653 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "byreal-auto",
  3. "version": "0.1.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "tsx watch src/index.ts",
  8. "start": "node dist/index.js",
  9. "build": "tsc -p tsconfig.json",
  10. "lint": "eslint .",
  11. "lint:fix": "eslint . --fix",
  12. "closePosition": "tsx src/closePosition/index.ts"
  13. },
  14. "dependencies": {
  15. "@solana/web3.js": "^1.98.0",
  16. "bs58": "^6.0.0",
  17. "dotenv": "^16.4.5",
  18. "zod": "^3.24.1"
  19. },
  20. "devDependencies": {
  21. "@eslint/js": "^9.17.0",
  22. "@types/node": "^22.10.2",
  23. "eslint": "^9.17.0",
  24. "tsx": "^4.19.2",
  25. "typescript": "^5.7.2",
  26. "typescript-eslint": "^8.18.2"
  27. }
  28. }