| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "private": true,
- "scripts": {
- "programs:build": "zx ./scripts/rust/build-sbf.mjs program",
- "programs:test": "zx ./scripts/rust/test-sbf.mjs program",
- "programs:format": "zx ./scripts/rust/format.mjs program",
- "programs:lint": "zx ./scripts/rust/lint.mjs program",
- "solana:check": "zx ./scripts/check-solana-version.mjs",
- "solana:link": "zx ./scripts/link-solana-version.mjs",
- "validator:start": "zx ./scripts/start-validator.mjs",
- "validator:restart": "pnpm validator:start --restart",
- "validator:stop": "zx ./scripts/stop-validator.mjs",
- "clients:cli:format": "zx ./scripts/rust/format.mjs clients/cli",
- "clients:cli:lint": "zx ./scripts/rust/lint.mjs clients/cli",
- "clients:cli:test": "zx ./scripts/rust/test.mjs clients/cli",
- "template:upgrade": "zx ./scripts/upgrade-template.mjs",
- "rust:spellcheck": "cargo spellcheck --code 1",
- "rust:audit": "zx ./scripts/rust/audit.mjs",
- "rust:semver": "cargo semver-checks",
- "rust:publish": "zx ./scripts/rust/publish.mjs",
- "interface:format": "zx ./scripts/rust/format.mjs interface",
- "interface:lint": "zx ./scripts/rust/lint.mjs interface",
- "interface:test": "zx ./scripts/rust/test.mjs interface"
- },
- "devDependencies": {
- "@iarna/toml": "^2.2.5",
- "typescript": "^5.5.2",
- "zx": "^8.3.2"
- },
- "engines": {
- "node": ">=v20.0.0"
- },
- "packageManager": "pnpm@9.1.0"
- }
|