-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.33 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
{
"name": "rootward",
"version": "0.1.2",
"private": true,
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"lint": "biome check .",
"typecheck": "pnpm --filter create-rootward typecheck",
"test": "pnpm --dir docs test && pnpm --filter create-rootward test",
"build": "pnpm --dir docs build && pnpm --filter create-rootward build",
"versions:check": "node scripts/check-versions.mjs",
"templates:check": "pnpm --filter create-rootward templates:check",
"templates:rust:check": "node scripts/check-rust-template.mjs",
"pack:check": "pnpm --filter create-rootward pack:check",
"smoke:creator": "rm -rf temporary && node packages/create-rootward/dist/bin.mjs typescript temporary/smoke-tool --cli-name smoke-tool --package-name smoke-tool --json >/dev/null && rm -rf temporary",
"smoke:creator:rust": "node scripts/smoke-creator-rust.mjs",
"check": "pnpm versions:check && pnpm templates:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm pack:check && pnpm templates:rust:check && pnpm smoke:creator && pnpm smoke:creator:rust"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^24.12.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}