This commit is contained in:
zuevav
2026-05-20 19:33:02 +03:00
commit f4bca8449e
30 changed files with 4152 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"name": "zbrain",
"version": "0.1.0",
"private": true,
"description": "Централизованная база знаний для AI-агентов ZETIT",
"repository": {
"type": "git",
"url": "git@git.zetit.ru:zuevav/ZBrain.git"
},
"author": "Зуев Алексей Викторович <zuev@zetit.ru>",
"license": "UNLICENSED",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter '*' dev",
"build": "bun run --filter '*' build",
"lint": "bun run --filter '*' lint",
"test": "bun run --filter '*' test",
"typecheck": "bun run --filter '*' typecheck",
"db:migrate": "bun run --cwd apps/api db:migrate",
"db:seed": "bun run --cwd apps/api db:seed",
"clean": "rm -rf node_modules apps/*/node_modules apps/*/dist packages/*/node_modules packages/*/dist"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0",
"prettier": "^3.3.0",
"eslint": "^9.0.0"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.2.0"
},
"packageManager": "bun@1.2.0"
}