Files
Minikura/packages/db/package.json
T
dependabot[bot]andGitHub 218b14d4a3 build(deps): bump @prisma/client from 7.9.1 to 7.10.0
Bumps [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) from 7.9.1 to 7.10.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.10.0/packages/client)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-version: 7.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-09-02 00:34:44 +00:00

29 lines
689 B
JSON

{
"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": "^1.3.14",
"@types/pg": "^8.21.0"
},
"peerDependencies": {
"typescript": "^7.0.2"
},
"dependencies": {
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "7.10.0",
"dotenv-cli": "^11.0.0",
"pg": "^8.23.0",
"prisma": "^7.9.1"
}
}