Initial scaffold

This commit is contained in:
Storme-bit
2026-04-03 06:03:17 -07:00
commit 0e1d592980
13 changed files with 207 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "loom",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"memory": "npm -w packages/memory-service start",
"embedding": "npm -w packages/embedding-service start",
"inference": "npm -w packages/inference-service start",
"orchestration": "npm -w packages/orchestration-service start"
},
"engines": {
"node": ">=22.0.0"
}
}