-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.94 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
38
39
40
{
"private": true,
"scripts": {
"programs:build": "zx ./scripts/program/build.mjs",
"programs:test": "zx ./scripts/program/test.mjs",
"programs:clean": "zx ./scripts/program/clean.mjs",
"programs:format": "zx ./scripts/program/format.mjs",
"programs:lint": "zx ./scripts/program/lint.mjs",
"generate:idls": "zx ./scripts/generate-idls.mjs",
"solana:check": "zx ./scripts/check-solana-version.mjs",
"solana:link": "zx ./scripts/link-solana-version.mjs",
"generate": "pnpm generate:idls && 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 --client-path clients/rust",
"clients:rust:lint": "zx ./scripts/client/lint-rust.mjs --client-path clients/rust",
"clients:rust:test": "zx ./scripts/client/test-rust.mjs --client-path clients/rust",
"clients:rust:publish": "zx ./scripts/client/publish-rust.mjs",
"clients:cli:format": "zx ./scripts/client/format-rust.mjs --client-path clients/cli",
"clients:cli:lint": "zx ./scripts/client/lint-rust.mjs --client-path clients/cli",
"clients:cli:test": "zx ./scripts/client/test-rust.mjs --client-path clients/cli"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@kinobi-so/nodes-from-anchor": "^0.20.9",
"@kinobi-so/renderers-js": "^0.21.2",
"@kinobi-so/renderers-rust": "^0.21.0",
"@metaplex-foundation/shank-js": "^0.1.7",
"kinobi": "^0.21.0",
"typescript": "^5.5.2",
"zx": "^7.2.3"
},
"packageManager": "pnpm@9.1.0"
}