- 新增 pnpm dep-check 腳本 - CI lint job 新增 Dependency Check 步驟 - 修復 tsPreCompilationDeps (monorepo 相容) 83 模組、57 依賴、0 違規 ✅ Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
855 B
JSON
33 lines
855 B
JSON
{
|
|
"name": "awoooi",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "AWOOOI - AI + WOOO Intelligent Operations Platform",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wooo-work/awoooi.git"
|
|
},
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"lint": "turbo lint",
|
|
"typecheck": "turbo typecheck",
|
|
"test": "turbo test",
|
|
"clean": "turbo clean && rm -rf node_modules",
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"dep-check": "depcruise apps/web/src --config .dependency-cruiser.cjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"dependency-cruiser": "^17.3.9",
|
|
"prettier": "^3.2.0",
|
|
"turbo": "^2.0.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"packageManager": "pnpm@9.0.0",
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
}
|
|
}
|