* Move typescript version definition to pnpm-workspace. * Bump typescript to 5.9. * Minor fixes to satisfy the compiler. --------- Co-authored-by: Raúl Barroso <code@raulb.dev>
32 lines
845 B
JSON
32 lines
845 B
JSON
{
|
|
"name": "@supabase/pg-meta",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"author": "Supabase",
|
|
"main": "./src/index.ts",
|
|
"repository": "supabase/supabase",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"clean": "rimraf node_modules",
|
|
"test": "run-s db:clean db:run test:run db:clean",
|
|
"db:clean": "cd test/db && docker compose down",
|
|
"db:run": "cd test/db && docker compose up --detach --wait",
|
|
"test:run": "vitest run --coverage",
|
|
"test:update": "vitest run --update",
|
|
"lint": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/pg": "^8.11.11",
|
|
"@vitest/coverage-v8": "^3.0.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"pg": "^8.13.1",
|
|
"postgres-array": "^3.0.2",
|
|
"typescript": "catalog:",
|
|
"vite": "catalog:",
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|