9ac08e5893
- bun.lock → pnpm-lock.yaml + pnpm-workspace.yaml - 删除 sqlite-adapter.ts(Bun/Node 双 runtime 兼容层,未被使用) - package.json 删除 workspaces 字段,加 pnpm.onlyBuiltDependencies - 加 vite 8 显式依赖(vitest 4.x peer dep) - CLAUDE.md 全面更新:Runtime/Commands/Release 流程 - .gitignore 加 bun.lock 36/36 files pass, 617/617 tests pass Fixes #66
33 lines
679 B
JSON
33 lines
679 B
JSON
{
|
|
"name": "@ocas/workspace",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@shazhou/proman": "0.2.0",
|
|
"@types/node": "^25.9.1",
|
|
"tsx": "^4.22.4",
|
|
"ulidx": "^2.4.1",
|
|
"vite": "^8.0.16",
|
|
"vitest": "^4.1.8"
|
|
},
|
|
"scripts": {
|
|
"build": "proman build",
|
|
"test": "proman test",
|
|
"check": "proman check",
|
|
"format": "proman format"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/shazhou-ww/ocas.git"
|
|
},
|
|
"homepage": "https://github.com/shazhou-ww/ocas",
|
|
"bugs": {
|
|
"url": "https://github.com/shazhou-ww/ocas/issues"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"better-sqlite3"
|
|
]
|
|
}
|
|
}
|