build: scaffold workflow console workspace

This commit is contained in:
lda
2026-07-02 11:05:06 +07:00 Verified
parent 98f85f6726
commit 7583d41b17
17 changed files with 2101 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "@lda/workflow-rpc",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": { "effect": "3.21.4" },
"devDependencies": { "vitest": "4.1.9" }
}