Files
metabuilder/dbal/development/package.json
dependabot[bot] 6bdeae32e2 chore(deps-dev): bump @types/node from 22.19.7 to 25.1.0
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.19.7 to 25.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-01 02:36:59 +00:00

57 lines
1.8 KiB
JSON

{
"name": "@metabuilder/dbal",
"version": "1.0.0",
"description": "Database Abstraction Layer for MetaBuilder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:unit": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:conformance": "tsx tests/conformance/runner.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"codegen": "tsx ../shared/tools/codegen/gen_types.ts",
"codegen:prisma": "node ../shared/tools/codegen/gen_prisma_schema.js",
"generate-types": "node ../shared/tools/codegen/generate-types.js",
"db:generate": "prisma generate --schema=../shared/prisma/schema.prisma",
"db:push": "prisma db push --schema=../shared/prisma/schema.prisma",
"db:migrate": "prisma migrate deploy --schema=../shared/prisma/schema.prisma",
"db:studio": "prisma studio --schema=../shared/prisma/schema.prisma"
},
"keywords": [
"database",
"abstraction",
"orm",
"prisma",
"sqlite",
"security"
],
"author": "MetaBuilder Contributors",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.743.0",
"@aws-sdk/lib-storage": "^3.743.0",
"@aws-sdk/s3-request-presigner": "^3.743.0",
"@prisma/adapter-better-sqlite3": "^7.3.0",
"@prisma/client": "^7.3.0",
"better-sqlite3": "^12.5.0",
"dotenv": "^17.2.3",
"prisma": "^7.3.0",
"yaml": "^2.8.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"prettier": "^3.4.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}