-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"private": true,
"scripts": {
"solana:check": "zx ./scripts/check-solana-version.mjs",
"solana:link": "zx ./scripts/link-solana-version.mjs",
"generate": "pnpm generate:clients",
"generate:clients": "zx ./scripts/generate-clients.mjs",
"validator:start": "zx ./scripts/start-validator.mjs",
"validator:restart": "pnpm validator:start --restart",
"validator:stop": "zx ./scripts/stop-validator.mjs",
"clients:js:format": "zx ./scripts/client/format-js.mjs",
"clients:js:lint": "zx ./scripts/client/lint-js.mjs",
"clients:js:publish": "zx ./scripts/client/publish-js.mjs",
"clients:js:test": "zx ./scripts/client/test-js.mjs",
"clients:rust:format": "zx ./scripts/client/format-rust.mjs",
"clients:rust:lint": "zx ./scripts/client/lint-rust.mjs",
"clients:rust:publish": "zx ./scripts/client/publish-rust.mjs",
"clients:rust:test": "zx ./scripts/client/test-rust.mjs",
"interface:format": "zx ./scripts/interface/format.mjs",
"interface:lint": "zx ./scripts/interface/lint.mjs",
"interface:test": "zx ./scripts/interface/test.mjs",
"interface:wasm": "zx ./scripts/interface/wasm.mjs",
"template:upgrade": "zx ./scripts/upgrade-template.mjs"
},
"devDependencies": {
"@codama/renderers-js": "^1.1.0",
"@codama/renderers-rust": "^1.0.4",
"@iarna/toml": "^2.2.5",
"codama": "^1.1.0",
"typescript": "^5.5.2",
"zx": "^7.2.3"
},
"engines": {
"node": ">=v20.0.0"
},
"packageManager": "[email protected]"
}