refactor(packages): extract boulder-state package

This commit is contained in:
YeonGyu-Kim
2026-05-21 01:19:16 +09:00
parent 7028c1f40a
commit f7ceb03efe
24 changed files with 1228 additions and 1177 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@oh-my-opencode/boulder-state",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "Pure TypeScript boulder work-tracking state machine for oh-my-opencode.",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.ts"
}
},
"types": "./index.d.ts",
"scripts": {
"typecheck": "tsgo --noEmit -p tsconfig.json",
"test": "bun test src/*.test.ts"
},
"dependencies": {
"@oh-my-opencode/utils": "workspace:*"
}
}