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)
23 lines
522 B
JSON
23 lines
522 B
JSON
{
|
|
"name": "@uncaged/pulse-local",
|
|
"version": "0.1.0",
|
|
"description": "Pulse local storage — bun:sqlite implementation of PulseStore",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "bun test"
|
|
},
|
|
"keywords": ["pulse", "sqlite", "local", "storage"],
|
|
"author": "oc-xiaoju",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@uncaged/pulse": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest",
|
|
"typescript": "^6.0.2"
|
|
}
|
|
}
|