made system changes

This commit is contained in:
SinachPat
2026-04-23 09:39:01 +01:00
parent 71296f82af
commit dc177c7689
49 changed files with 6256 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@originmain/agent-bridge",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@originmain/diff-engine": "workspace:*",
"@originmain/origin-graph": "workspace:*",
"@originmain/ai-layer": "workspace:*",
"zod": "^3.0.0"
},
"devDependencies": {
"typescript": "^5.5.0"
}
}
+1
View File
@@ -0,0 +1 @@
export {};
+8
View File
@@ -0,0 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"noEmit": true
},
"include": ["src"],
"exclude": ["node_modules"]
}