package.json 865 B

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