34 lines
837 B
JSON
34 lines
837 B
JSON
{
|
|
"name": "@reviq/db-schema",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "tsc --build --clean && rm -rf dist/ node_modules/ .eslintcache",
|
|
"lint": "eslint . --cache",
|
|
"generate": "kysely-codegen --dialect postgres --url $DATABASE_URL --out-file src/types.ts"
|
|
},
|
|
"dependencies": {
|
|
"kysely": "^0.28.9",
|
|
"pg": "^8.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@macalinao/eslint-config": "catalog:",
|
|
"@macalinao/tsconfig": "catalog:",
|
|
"@types/node": "^25.0.3",
|
|
"@types/pg": "^8.11.10",
|
|
"eslint": "catalog:",
|
|
"kysely-codegen": "^0.19.0",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|