first commit

This commit is contained in:
douboer@gmail.com
2026-03-03 13:23:14 +08:00
commit 3b7c1d558a
161 changed files with 28120 additions and 0 deletions

14
terminal/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "terminal-workspace",
"private": true,
"workspaces": [
"apps/web",
"packages/terminal-core"
],
"scripts": {
"dev": "npm run dev -w apps/web",
"build": "npm run build -w packages/terminal-core && npm run build -w apps/web",
"test": "npm run test -w packages/terminal-core",
"typecheck": "npm run typecheck -w packages/terminal-core && npm run typecheck -w apps/web"
}
}