This repository has been archived on 2026-06-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
workflow/package.json
T
xingyue 68ec2884d6 chore: remove pnpm-lock.yaml + enforce bun-only installs
- Delete accidentally committed pnpm-lock.yaml
- Add pnpm-lock.yaml, package-lock.json, yarn.lock to .gitignore
- Add packageManager field (bun@1.3.13)
- Add preinstall script that errors when not using bun
2026-05-18 20:17:04 +08:00

31 lines
883 B
JSON

{
"name": "@uncaged/workflow-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"overrides": {
"@uncaged/json-cas": "^0.1.0",
"@uncaged/json-cas-workflow": "^0.1.0"
},
"packageManager": "bun@1.3.13",
"scripts": {
"preinstall": "node scripts/check-pkg-mgr.js",
"build": "bunx tsc --build",
"check": "bunx tsc --build && biome check . && bash scripts/lint-log-tags.sh",
"typecheck": "bunx tsc --build",
"format": "biome format --write .",
"test": "bun run --filter '*' test",
"changeset": "bunx changeset",
"version": "bunx changeset version",
"release": "bun run build && bun test && npx changeset publish --no-git-tag"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.7.0",
"@types/xxhashjs": "^0.2.4",
"bun-types": "^1.3.13"
}
}