Files
vps-tracker/packages/db/package.json
T
DenozordecandCursor c80090ed08
Docker / build (push) Has been cancelled
feat(accounts): доработать управление аккаунтами хостеров
Добавить apiLogin из credentials, сводку и health-индикаторы на /accounts, фильтры, раздельную форму логина и пароля, безопасное удаление с 409 и тесты API/repository.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 16:53:51 +07:00

43 lines
982 B
JSON

{
"name": "@cfdm/db",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"default": "./dist/schema/index.js"
},
"./repositories/*": {
"types": "./dist/repositories/*.d.ts",
"default": "./dist/repositories/*.js"
},
"./test-setup": {
"types": "./dist/test-setup.d.ts",
"default": "./dist/test-setup.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"drizzle-orm": "^0.40.0",
"better-sqlite3": "^11.10.0",
"@cfdm/shared": "workspace:*"
},
"devDependencies": {
"drizzle-kit": "^0.30.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.0",
"typescript": "^5.9.2",
"vitest": "^3.0.0"
}
}