chore: initialize monorepo scaffold with npm workspaces
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "@visionl/daemon",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"main": "./dist/server.js",
|
||||
"scripts": {
|
||||
"typecheck": "tsc -b",
|
||||
"build": "tsc -b",
|
||||
"start": "node ./dist/server.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@visionl/core": "*",
|
||||
"playwright": "^1.52.0",
|
||||
"playwright-extra": "^4.3.0",
|
||||
"puppeteer-extra-plugin-stealth": "^2.11.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/ws": "^8.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// @visionl/daemon — placeholder, to be implemented in Task 3
|
||||
export const DAEMON_VERSION = '0.1.0';
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src"
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "../core" }]
|
||||
}
|
||||
Reference in New Issue
Block a user