-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.64 KB
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
{
"name": "tokendance-code-workspace",
"version": "0.3.0-rs.0",
"private": true,
"license": "MIT",
"description": "TokenDanceCode Rust rewrite workspace.",
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.18"
},
"scripts": {
"build": "cargo build --workspace",
"test": "cargo test --workspace",
"typecheck": "cargo check --workspace",
"verify": "cargo fmt --all -- --check && cargo test --workspace",
"rust:fmt": "cargo fmt --all",
"rust:cli": "cargo run -p tokendance-cli --",
"release:rust:plan:check": "node scripts/check-rust-release-plan.mjs",
"smoke:rust-wrapper": "node scripts/smoke-rust-wrapper-tarball.mjs",
"pack:dry-run": "pnpm --filter @tokendance/code-core pack --dry-run && pnpm --filter @tokendance/code-sdk pack --dry-run && pnpm --filter @tokendance/code-cli pack --dry-run",
"pack:smoke": "node scripts/smoke-tarball-install.mjs",
"smoke:gateway": "node scripts/smoke-real-gateway.mjs",
"registry:next:check": "node scripts/check-registry-next.mjs",
"contract:check": "node scripts/check-release-contract.mjs",
"release:publish:check": "node scripts/check-release-publish-readiness.mjs",
"wave4:status": "node scripts/verify-wave4-worktrees.mjs",
"wave5:status": "node scripts/verify-wave5-worktrees.mjs",
"wave7:status": "node scripts/verify-wave7-worktrees.mjs",
"pack:check": "pnpm build && pnpm pack:dry-run && pnpm pack:smoke",
"release:next:check": "pnpm contract:check && pnpm verify && pnpm pack:check"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}