feat: hai board — core, dashboard, cli, engine

This commit is contained in:
Dustin Byrne
2026-03-25 18:32:10 -04:00
parent 517c963200
commit 961203692d
41 changed files with 6383 additions and 0 deletions

22
packages/cli/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "hai",
"version": "0.1.0",
"type": "module",
"bin": {
"hai": "./dist/bin.js"
},
"scripts": {
"dev": "tsx src/bin.ts",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hai/core": "workspace:*",
"@hai/dashboard": "workspace:*",
"@hai/engine": "workspace:*"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}