-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "0.1.0",
"private": true,
"description": "A WebSocket-TCP proxy that enables PostgreSQL clients to connect to a Postgres database running in the browser",
"keywords": [
"postgresql",
"postgres",
"browser",
"websocket",
"proxy",
"pglite",
"drizzle",
"drizzle-kit",
"prisma",
"studio"
],
"homepage": "https://github.com/f0rr0/pg-browser-proxy#readme",
"bugs": {
"url": "https://github.com/f0rr0/pg-browser-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f0rr0/pg-browser-proxy.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/f0rr0"
},
"license": "MIT",
"author": "Sid Jain",
"type": "module",
"workspaces": ["packages/*", "tooling/*", "examples/*"],
"scripts": {
"build": "turbo run build",
"lint": "biome check --write",
"sherif": "bunx sherif@latest",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"lefthook": "^1.8.2",
"turbo": "^2.3.0"
},
"packageManager": "bun@1.1.33",
"overrides": {
"typescript": "^5.8.0-dev.20241116"
},
"trustedDependencies": ["@biomejs/biome", "esbuild", "lefthook"]
}