7993ecc6d6
CI / test (push) Has been cancelled
Phase 2 of PulseDatabase abstraction: - Create @uncaged/pulse-local with bun:sqlite implementation - Core @uncaged/pulse now exports types only for store (no createStore/createScopedStore) - Update pulse-workflows, upulse to import factories from @uncaged/pulse-local - All tests passing (267 core, 39 pulse-workflows)
42 lines
850 B
JSON
42 lines
850 B
JSON
{
|
|
"name": "@uncaged/upulse",
|
|
"version": "0.1.0",
|
|
"description": "Pulse CLI — Agent 的自主神经系统管理工具",
|
|
"type": "module",
|
|
"bin": {
|
|
"upulse": "dist/cli.js"
|
|
},
|
|
"main": "dist/cli.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "bun run src/cli.ts",
|
|
"test": "bun test --timeout 60000 ./src"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/pulse": "workspace:*",
|
|
"@uncaged/pulse-local": "workspace:*",
|
|
"commander": "^12.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^6.0.2",
|
|
"@types/node": "^25.6.0",
|
|
"bun-types": "latest"
|
|
},
|
|
"keywords": [
|
|
"pulse",
|
|
"cli",
|
|
"agent",
|
|
"daemon"
|
|
],
|
|
"author": "oc-xiaoju",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oc-xiaoju/pulse",
|
|
"directory": "packages/upulse"
|
|
}
|
|
}
|