life-manager/codebase/apps/cli/package.json
Claude Code 450683f5d6 deps-upgrade(dependencies): ⬆️ Update all dependencies and lockfile versions across the monorepo
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-17 17:50:58 -07:00

36 lines
900 B
JSON

{
"name": "@life-platform/cli",
"version": "0.0.1",
"private": true,
"type": "module",
"bin": {
"lm": "./src/bin/lm.ts"
},
"scripts": {
"dev": "echo 'CLI ready — use ./run <command> to invoke'",
"build": "swc src -d dist --strip-leading-paths",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@life-platform/shared": "workspace:*",
"@lilith/format": "^1.0.0",
"@lilith/terminal-formatting": "^1.0.0",
"bcrypt": "^6.0.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"ora": "^8.2.0",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"@types/bcrypt": "^6.0.0",
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^3.1.0"
}
}