6c19eea218
CI / check (pull_request) Failing after 1m8s
- Set minimumReleaseAge: 0 (pnpm 11 defaults to 1440 min) - Add pnpm.onlyBuiltDependencies in package.json for esbuild and msw (pnpm 11 blocks build scripts by default)
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "@united-workforce/monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"uwf": "pnpm tsx packages/cli/src/cli.ts",
|
|
"prepublishOnly": "echo 'Use pnpm run release instead' && exit 1",
|
|
"build": "proman build",
|
|
"check": "proman check",
|
|
"typecheck": "npx tsc --build",
|
|
"format": "proman format",
|
|
"test": "proman test",
|
|
"test:ci": "pnpm -r run test:ci",
|
|
"changeset": "npx changeset",
|
|
"version": "npx changeset version",
|
|
"release": "pnpm run build && pnpm run test && node scripts/publish-all.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@agentclientprotocol/sdk": "^0.22.1",
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@changesets/cli": "^2.31.0",
|
|
"@shazhou/proman": "^0.5.1",
|
|
"@types/node": "^25.7.0",
|
|
"@types/xxhashjs": "^0.2.4",
|
|
"@united-workforce/agent-hermes": "workspace:*",
|
|
"@vitest/coverage-v8": "^4.1.8",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.1",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/shazhou-ww/united-workforce.git"
|
|
},
|
|
"homepage": "https://github.com/shazhou-ww/united-workforce#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/shazhou-ww/united-workforce/issues"
|
|
},
|
|
"license": "MIT",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"msw"
|
|
]
|
|
}
|
|
}
|