e5e6de2fad
- Replace bun:test with vitest across all packages - Replace bun build with esbuild - Replace bun:sqlite with better-sqlite3 - Fix OCAS Store API: store.put/get → store.cas.put/get - Fix vitest vi.mock hoisting (vi.hoisted) - Add pnpm-workspace.yaml and pnpm-lock.yaml - Update all package.json test/build scripts WIP: 8 failures remain in agent-hermes (bun engines check + sqlite migration) Refs #26
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@united-workforce/agent-hermes",
|
|
"version": "0.5.0",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"bin": {
|
|
"uwf-hermes": "./src/cli.ts"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "echo 'Use pnpm run release from repo root' && exit 1",
|
|
"test": "vitest run __tests__/",
|
|
"test:ci": "vitest run __tests__/"
|
|
},
|
|
"dependencies": {
|
|
"@ocas/core": "^0.2.2",
|
|
"@united-workforce/protocol": "workspace:^",
|
|
"@united-workforce/util": "workspace:^",
|
|
"@united-workforce/util-agent": "workspace:^",
|
|
"better-sqlite3": "^12.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.shazhou.work/shazhou/united-workforce.git",
|
|
"directory": "packages/agent-hermes"
|
|
},
|
|
"homepage": "https://git.shazhou.work/shazhou/united-workforce#readme",
|
|
"bugs": {
|
|
"url": "https://git.shazhou.work/shazhou/united-workforce/issues"
|
|
},
|
|
"license": "MIT"
|
|
}
|