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
+19
View File
@@ -0,0 +1,19 @@
{
"name": "@visionl/cli",
"version": "0.1.0",
"private": true,
"bin": {
"visionl": "./dist/index.js"
},
"scripts": {
"typecheck": "tsc -b",
"build": "tsc -b"
},
"dependencies": {
"@visionl/core": "*",
"commander": "^13.0.0"
},
"devDependencies": {
"@types/commander": "npm:commander@^13.0.0"
}
}
+2
View File
@@ -0,0 +1,2 @@
// @visionl/cli — placeholder, to be implemented in Task 4
export const CLI_VERSION = '0.1.0';
+9
View File
@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src"],
"references": [{ "path": "../core" }]
}