package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "program-examples",
  3. "version": "1.0.0",
  4. "description": "### :crab: Rust. :snake: Python. :link: All onchain.",
  5. "scripts": {
  6. "sync-package-json": "ts-node scripts/sync-package-json.ts",
  7. "format:fix": "pnpx @biomejs/biome format --write ./",
  8. "lint:fix": "pnpx @biomejs/biome lint --write ./",
  9. "lint": "pnpx @biomejs/biome lint ./",
  10. "fix": "pnpx @biomejs/biome check --write ./",
  11. "check": "pnpx @biomejs/biome check ./",
  12. "prepare": "husky"
  13. },
  14. "lint-staged": {
  15. "*": ["biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true"]
  16. },
  17. "keywords": [],
  18. "author": "Solana Foundation",
  19. "license": "MIT",
  20. "devDependencies": {
  21. "@biomejs/biome": "1.8.1",
  22. "@types/node": "^20.9.0",
  23. "husky": "^9.0.11",
  24. "picocolors": "^1.0.0",
  25. "ts-node": "^10.9.1",
  26. "typescript": "^5.2.2"
  27. },
  28. "dependencies": {
  29. "@coral-xyz/anchor": "^0.30.1",
  30. "@solana/web3.js": "^1.95.2",
  31. "anchor-bankrun": "^0.4.0",
  32. "chai": "^5.1.1",
  33. "solana-bankrun": "^0.3.0"
  34. }
  35. }