package.json 709 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "byreal-sniper",
  3. "version": "1.0.0",
  4. "description": "Byreal LP Position Sniper Bot - Automated trading bot for copying LP positions",
  5. "main": "index.js",
  6. "type": "module",
  7. "scripts": {
  8. "start": "node index.js",
  9. "sniper": "node index.js start",
  10. "status": "node index.js status",
  11. "clear": "node index.js clear"
  12. },
  13. "keywords": [
  14. "solana",
  15. "defi",
  16. "trading",
  17. "sniper",
  18. "lp",
  19. "byreal",
  20. "jupiter"
  21. ],
  22. "author": "",
  23. "license": "MIT",
  24. "dependencies": {
  25. "@solana/spl-token": "^0.4.0",
  26. "@solana/web3.js": "^1.90.0",
  27. "axios": "^1.6.0",
  28. "bs58": "^5.0.0",
  29. "dotenv": "^16.4.0"
  30. },
  31. "engines": {
  32. "node": ">=18.0.0"
  33. }
  34. }