package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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/chai": "^5.2.2",
  23. "@types/mocha": "^10.0.10",
  24. "@types/node": "^20.9.0",
  25. "anchor-litesvm": "^0.1.2",
  26. "chai": "^5.1.1",
  27. "husky": "^9.0.11",
  28. "mocha": "^11.5.0",
  29. "picocolors": "^1.0.0",
  30. "ts-mocha": "^11.1.0",
  31. "ts-node": "^10.9.2",
  32. "tsconfig-paths": "^4.2.0",
  33. "typescript": "^5.2.2"
  34. },
  35. "dependencies": {
  36. "@coral-xyz/anchor": "^0.31.1",
  37. "@solana/web3.js": "^1.98.2"
  38. }
  39. }