e65e2aec72
CI / check (pull_request) Failing after 8m0s
- Replace vitest with bun:test across all 8 packages (47 test files) - vi.spyOn → spyOn, vi.restoreAllMocks() → mock.restore() (3 files) - toHaveBeenCalledOnce → toHaveBeenCalledTimes(1) (bun:test compat) - Delete all vitest.config.ts files - Remove vitest from devDependencies - Add preload.ts for process.exit mock (cli-workflow) - Fix import ordering (biome check --write) All tests pass. Closes #601
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@uncaged/workflow-agent-claude-code",
|
|
"version": "0.1.0",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"bin": {
|
|
"uwf-claude-code": "./src/cli.ts"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "echo 'Use bun run release from repo root' && exit 1",
|
|
"test": "bun test __tests__/",
|
|
"test:ci": "bun test __tests__/"
|
|
},
|
|
"dependencies": {
|
|
"@ocas/core": "^0.1.1",
|
|
"@uncaged/workflow-util-agent": "workspace:^",
|
|
"@uncaged/workflow-util": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.shazhou.work/uncaged/workflow.git",
|
|
"directory": "packages/workflow-agent-claude-code"
|
|
},
|
|
"homepage": "https://git.shazhou.work/uncaged/workflow#readme",
|
|
"bugs": {
|
|
"url": "https://git.shazhou.work/uncaged/workflow/issues"
|
|
},
|
|
"license": "MIT"
|
|
}
|