98b6153070
- Add bun-types and @types/xxhashjs to root devDependencies - Add types: ['bun-types'] to root and package tsconfigs - Fix AST Node type narrowing in bundle-validator.ts with AcornNode type and narrowNode helper - Fix generic ThreadContext variance in create-role-moderator.ts - Add explicit parameter types in worker.ts - Fix ChildProcess type in worker-spawn.ts to match spawn() stdio config - Remove all tsconfig.tsbuildinfo from git tracking - Add tsconfig.tsbuildinfo to .gitignore
20 lines
412 B
JSON
20 lines
412 B
JSON
{
|
|
"name": "@uncaged/workflow-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"examples"
|
|
],
|
|
"scripts": {
|
|
"build": "bun run --filter '*' build",
|
|
"check": "biome check .",
|
|
"format": "biome format --write .",
|
|
"test": "bun run --filter '*' test"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@types/xxhashjs": "^0.2.4",
|
|
"bun-types": "^1.3.13"
|
|
}
|
|
}
|