package.json 847 B

12345678910111213141516171819202122232425
  1. {
  2. "scripts": {
  3. "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/test.ts",
  4. "build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
  5. "build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
  6. "deploy": "solana program deploy ./program/target/so/hello_solana_program.so"
  7. },
  8. "dependencies": {
  9. "@metaplex-foundation/mpl-token-metadata": "^2.5.2",
  10. "@solana/spl-token": "^0.3.7",
  11. "@solana/web3.js": "^1.73.0",
  12. "borsh": "^0.7.0",
  13. "buffer": "^6.0.3",
  14. "fs": "^0.0.1-security"
  15. },
  16. "devDependencies": {
  17. "@types/bn.js": "^5.1.0",
  18. "@types/chai": "^4.3.1",
  19. "@types/mocha": "^9.1.1",
  20. "chai": "^4.3.4",
  21. "mocha": "^9.0.3",
  22. "ts-mocha": "^10.0.0",
  23. "typescript": "^4.3.5"
  24. }
  25. }