package.json 955 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "create-account-program",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "Create an account using the steel framework for Solana",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts",
  9. "build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
  10. "build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
  11. "deploy": "solana program deploy ./program/target/so/create_account_program.so"
  12. },
  13. "keywords": ["solana"],
  14. "author": "",
  15. "license": "MIT",
  16. "dependencies": {
  17. "@solana/web3.js": "^1.95.4"
  18. },
  19. "devDependencies": {
  20. "@types/chai": "^4.3.20",
  21. "@types/mocha": "^10.0.9",
  22. "@types/node": "^22.8.1",
  23. "chai": "^4.5.0",
  24. "mocha": "^10.7.3",
  25. "solana-bankrun": "^0.4.0",
  26. "ts-mocha": "^10.0.0",
  27. "typescript": "^5.6.3"
  28. }
  29. }