feat: initial prototype

This commit is contained in:
2026-02-13 15:52:13 +07:00
parent 134351b326
commit e8dbefde43
140 changed files with 12390 additions and 1369 deletions

View File

@@ -1,24 +1,28 @@
{
"name": "@minikura/db",
"module": "src/index.ts",
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"generate": "prisma generate",
"studio": "bun with-env prisma studio",
"push": "bun with-env prisma db push",
"reset": "bun with-env prisma migrate reset --force",
"with-env": "dotenv -e ../../.env --"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "5.20.0",
"dotenv-cli": "^7.4.2",
"prisma": "^5.20.0"
}
"name": "@minikura/db",
"module": "src/index.ts",
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"generate": "prisma generate",
"studio": "bun with-env prisma studio",
"push": "bun with-env prisma db push",
"reset": "bun with-env prisma migrate reset --force",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.16.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "7.2.0",
"dotenv-cli": "^11.0.0",
"pg": "^8.17.1",
"prisma": "^7.2.0"
}
}