- Replace /tmp with project-relative tmp/ directory - Add CLAWDIE_TMP_DIR env var with project-relative default - Add TMP_DIR, TMP_TESTS_DIR, TMP_IPC_DIR, TMP_SKILLS_DIR to config.ts - Update all test files to use TMP_TESTS_DIR - Update shell scripts to use project-relative tmp/skills/ - Update agent-runner IPC cleanup to use /workspace/ipc/input.json - Update Ansible playbooks to use env vars with fallbacks - Add CMS resource limits - Add jail-resource-limits.yaml playbook - Add setup-wizard.ts (FreeBSD bsdinstall-style TUI) - Add network.ts bootstrap step - Remove hardcoded public gateway IP
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "controlplane",
|
|
"version": "0.2.0",
|
|
"description": "Personal AI assistant. Lightweight, secure, customizable.",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"doctor": "tsx src/doctor.ts",
|
|
"auth": "tsx setup/telegram-auth.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
"setup": "tsx setup/index.ts",
|
|
"wizard": "tsx setup/index.ts --step setup-wizard",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.8.1",
|
|
"cron-parser": "^5.5.0",
|
|
"grammy": "^1.41.1",
|
|
"pg": "^8.20.0",
|
|
"pino": "^9.6.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"yaml": "^2.8.2",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.12",
|
|
"@types/node": "^22.10.0",
|
|
"@types/pg": "^8.18.0",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"prettier": "^3.8.1",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|