first commit

This commit is contained in:
Michal
2026-02-21 03:10:39 +00:00
commit d0aa0c5d63
174 changed files with 21169 additions and 0 deletions

31
src/db/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "@mcpctl/db",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"test": "vitest",
"test:run": "vitest run",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx src/seed/index.ts"
},
"dependencies": {
"@prisma/client": "^6.0.0",
"@mcpctl/shared": "workspace:*"
},
"devDependencies": {
"prisma": "^6.0.0"
}
}