- apps/api: FastAPI backend with Dockerfile - apps/web: Next.js frontend with Dockerfile - apps/sensor: Signal collection agent - packages: shared packages Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
947 B
JSON
39 lines
947 B
JSON
{
|
|
"name": "@awoooi/lewooogo-core",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "leWOOOgo Engine - Core interfaces and plugin system",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./interfaces": {
|
|
"import": "./dist/interfaces/index.mjs",
|
|
"require": "./dist/interfaces/index.js",
|
|
"types": "./dist/interfaces/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint src/",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@awoooi/eslint-config": "workspace:*",
|
|
"@awoooi/tsconfig": "workspace:*",
|
|
"tsup": "^8.0.0",
|
|
"vitest": "^1.2.0"
|
|
}
|
|
}
|