-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@prisma/ppg",
"version": "1.0.1",
"description": "Lightweight client for Prisma Postgres",
"repository": {
"type": "git",
"url": "https://github.com/prisma/ppg-client"
},
"keywords": [
"prisma",
"postgres",
"postgresql",
"ppg",
"database",
"client",
"sql",
"serverless",
"edge",
"http",
"websocket"
],
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --target node18 --out-dir dist",
"format": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepack": "pnpm build"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/busboy": "^1.5.4",
"@types/node": "^22.15.18",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.5",
"@vitest/ui": "^4.0.5",
"busboy": "^1.6.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^4.0.5"
},
"dependencies": {
"ws": "^8.18.3"
}
}