Files
dev-puppeteer/packages/db/package.json
2026-05-10 01:47:54 +09:00

20 lines
461 B
JSON

{
"name": "@devflow/db",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean && tsc -p tsconfig.build.json",
"typecheck": "tsc -b --noEmit",
"test": "vitest run"
},
"dependencies": {
"@devflow/core": "workspace:*",
"drizzle-orm": "0.45.2",
"pg": "8.20.0"
}
}