package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "private": true,
  3. "scripts": {
  4. "programs:build": "zx ./scripts/rust/build-sbf.mjs program",
  5. "programs:format": "zx ./scripts/rust/format.mjs program",
  6. "programs:lint": "zx ./scripts/rust/lint.mjs program",
  7. "programs:test": "zx ./scripts/rust/test.mjs program",
  8. "solana:check": "zx ./scripts/check-solana-version.mjs",
  9. "solana:link": "zx ./scripts/link-solana-version.mjs",
  10. "generate": "pnpm generate:clients",
  11. "generate:clients": "zx ./scripts/generate-clients.mjs",
  12. "validator:start": "zx ./scripts/start-validator.mjs",
  13. "validator:restart": "pnpm validator:start --restart",
  14. "validator:stop": "zx ./scripts/stop-validator.mjs",
  15. "clients:js:format": "zx ./scripts/js/format.mjs",
  16. "clients:js:lint": "zx ./scripts/js/lint.mjs",
  17. "clients:js:publish": "zx ./scripts/js/publish.mjs",
  18. "clients:js:test": "zx ./scripts/js/test.mjs",
  19. "clients:rust:format": "zx ./scripts/rust/format.mjs clients/rust",
  20. "clients:rust:lint": "zx ./scripts/rust/lint.mjs clients/rust",
  21. "clients:rust:test": "zx ./scripts/rust/test.mjs clients/rust",
  22. "template:upgrade": "zx ./scripts/upgrade-template.mjs",
  23. "rust:spellcheck": "cargo spellcheck --code 1",
  24. "rust:audit": "zx ./scripts/rust/audit.mjs",
  25. "rust:publish": "zx ./scripts/rust/publish.mjs",
  26. "rust:semver": "cargo semver-checks",
  27. "p-token:build": "zx ./scripts/rust/build-sbf.mjs p-token",
  28. "p-token:format": "zx ./scripts/rust/format.mjs p-token",
  29. "p-token:lint": "zx ./scripts/rust/lint.mjs p-token",
  30. "p-token:test": "zx ./scripts/rust/test.mjs p-token",
  31. "fixtures:clean": "zx ./scripts/rust/fixtures.mjs clean",
  32. "fixtures:generate": "zx ./scripts/rust/fixtures.mjs generate",
  33. "fixtures:run": "zx ./scripts/rust/fixtures.mjs run",
  34. "p-interface:format": "zx ./scripts/rust/format.mjs p-interface",
  35. "p-interface:lint": "zx ./scripts/rust/lint.mjs p-interface",
  36. "interface:format": "zx ./scripts/rust/format.mjs interface",
  37. "interface:lint": "zx ./scripts/rust/lint.mjs interface",
  38. "interface:test": "zx ./scripts/rust/test.mjs interface"
  39. },
  40. "devDependencies": {
  41. "@codama/renderers-js": "^1.3",
  42. "@codama/renderers-rust": "~1.0",
  43. "@iarna/toml": "^2.2.5",
  44. "codama": "^1.3",
  45. "typescript": "^5.5.2",
  46. "zx": "^7.2.3"
  47. },
  48. "engines": {
  49. "node": ">=v20.0.0"
  50. },
  51. "packageManager": "pnpm@9.1.0"
  52. }