chore: initialize monorepo scaffold with npm workspaces

This commit is contained in:
2026-08-12 20:36:12 +08:00
parent f5791906e2
commit 1392357dc1
13 changed files with 2408 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "visionl",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"typecheck": "tsc -b",
"build": "tsc -b",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@types/node": "^22.0.0"
}
}