package.json 970 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "token-swap",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts",
  8. "build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
  9. "build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
  10. "deploy": "solana program deploy ./program/target/so/account_data_program.so"
  11. },
  12. "keywords": [],
  13. "author": "Leo Pham <hongthaipro@gmail.com>",
  14. "license": "ISC",
  15. "dependencies": {
  16. "@solana/spl-token": "^0.4.9",
  17. "@solana/web3.js": "^1.95.4",
  18. "bs58": "^6.0.0"
  19. },
  20. "devDependencies": {
  21. "@types/chai": "^4.3.7",
  22. "@types/mocha": "^10.0.9",
  23. "@types/node": "^22.7.9",
  24. "borsh": "^2.0.0",
  25. "chai": "^4.3.7",
  26. "mocha": "^10.7.3",
  27. "solana-bankrun": "^0.4.0",
  28. "ts-mocha": "^10.0.0",
  29. "typescript": "^5.6.3"
  30. }
  31. }