package.json 932 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "steel-hello-solana",
  3. "version": "1.0.0",
  4. "description": "hello world with steel framework for solana",
  5. "scripts": {
  6. "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/index.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/hello_solana_program.so"
  10. },
  11. "keywords": [],
  12. "author": "Ayush Chauhan",
  13. "license": "ISC",
  14. "devDependencies": {
  15. "@types/bn.js": "^5.1.0",
  16. "@types/chai": "^4.3.1",
  17. "@types/mocha": "^9.1.1",
  18. "@types/node": "^22.7.4",
  19. "chai": "^4.3.4",
  20. "mocha": "^9.0.3",
  21. "solana-bankrun": "^0.3.0",
  22. "ts-mocha": "^10.0.0",
  23. "typescript": "^4.3.5"
  24. },
  25. "dependencies": {
  26. "@solana/web3.js": "^1.95.3"
  27. }
  28. }