package.json29 lines · main
1{
2 "name": "@supabase/pg-meta",
3 "version": "0.0.0",
4 "license": "MIT",
5 "author": "Briven",
6 "main": "./src/index.ts",
7 "repository": "briven/briven",
8 "scripts": {
9 "preinstall": "npx only-allow pnpm",
10 "clean": "rimraf node_modules .turbo tsconfig.tsbuildinfo",
11 "test": "test/run-tests.sh vitest run --coverage",
12 "test:update": "test/run-tests.sh vitest run --update",
13 "lint": "tsc --noEmit",
14 "typecheck": "tsc --noEmit"
15 },
16 "dependencies": {
17 "zod": "catalog:"
18 },
19 "devDependencies": {
20 "@types/pg": "^8.11.11",
21 "@vitest/coverage-v8": "catalog:",
22 "npm-run-all": "^4.1.5",
23 "pg": "^8.13.1",
24 "postgres-array": "^3.0.2",
25 "typescript": "catalog:",
26 "vite": "catalog:",
27 "vitest": "catalog:"
28 }
29}