-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 839 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "bight-ts-tooling",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm --filter create-bight build && pnpm --filter bight-ts-docs build",
"lint": "pnpm -r --workspace-concurrency=1 --if-present lint",
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"typecheck": "pnpm -r --workspace-concurrency=1 --if-present typecheck",
"format": "pnpm -r --workspace-concurrency=1 --if-present format",
"dev:cli": "pnpm --filter create-bight dev",
"dev:docs": "pnpm --filter bight-ts-docs dev",
"smoke:cli": "pnpm --filter create-bight build && node scripts/smoke-cli.mjs"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"globals": "^16.4.0",
"typescript-eslint": "^8.42.0"
}
}