package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "private": true,
  3. "scripts": {
  4. "programs:build": "zx ./scripts/rust/build-sbf.mjs program",
  5. "programs:test": "zx ./scripts/rust/test-sbf.mjs program",
  6. "programs:format": "zx ./scripts/rust/format.mjs program",
  7. "programs:lint": "zx ./scripts/rust/lint.mjs program",
  8. "solana:check": "zx ./scripts/check-solana-version.mjs",
  9. "solana:link": "zx ./scripts/link-solana-version.mjs",
  10. "validator:start": "zx ./scripts/start-validator.mjs",
  11. "validator:restart": "pnpm validator:start --restart",
  12. "validator:stop": "zx ./scripts/stop-validator.mjs",
  13. "clients:cli:format": "zx ./scripts/rust/format.mjs clients/cli",
  14. "clients:cli:lint": "zx ./scripts/rust/lint.mjs clients/cli",
  15. "clients:cli:test": "zx ./scripts/rust/test.mjs clients/cli",
  16. "template:upgrade": "zx ./scripts/upgrade-template.mjs",
  17. "rust:spellcheck": "cargo spellcheck --code 1",
  18. "rust:audit": "zx ./scripts/rust/audit.mjs",
  19. "rust:semver": "cargo semver-checks",
  20. "rust:publish": "zx ./scripts/rust/publish.mjs",
  21. "interface:format": "zx ./scripts/rust/format.mjs interface",
  22. "interface:lint": "zx ./scripts/rust/lint.mjs interface",
  23. "interface:test": "zx ./scripts/rust/test.mjs interface"
  24. },
  25. "devDependencies": {
  26. "@iarna/toml": "^2.2.5",
  27. "typescript": "^5.5.2",
  28. "zx": "^8.3.2"
  29. },
  30. "engines": {
  31. "node": ">=v20.0.0"
  32. },
  33. "packageManager": "pnpm@9.1.0"
  34. }