package.json 962 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "pda-rent-payer-program",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "Use a PDA to pay the rent for the creation of a new account.",
  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/pda_rent_payer_program.so"
  11. },
  12. "keywords": ["solana"],
  13. "author": "",
  14. "license": "MIT",
  15. "dependencies": {
  16. "@solana/web3.js": "^1.95.4"
  17. },
  18. "devDependencies": {
  19. "@types/chai": "^4.3.20",
  20. "@types/mocha": "^10.0.9",
  21. "@types/node": "^22.8.5",
  22. "borsh": "^2.0.0",
  23. "chai": "^4.5.0",
  24. "mocha": "^10.8.2",
  25. "solana-bankrun": "^0.4.0",
  26. "ts-mocha": "^10.0.0",
  27. "typescript": "^5.6.3"
  28. }
  29. }