19 lines
425 B
JSON
19 lines
425 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": {
|
|
"drizzle-orm": "0.45.2",
|
|
"pg": "8.20.0"
|
|
}
|
|
}
|