-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.09 KB
/
package.json
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
{
"name": "@tidbcloud/prisma-adapter",
"version": "5.20.0",
"description": "Prisma's driver adapter for \"@tidbcloud/serverless\"",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"lint": "tsc -p ./tsconfig.build.json",
"fmt": "prettier --write ./src",
"fmt-check": "prettier --check ./src"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"TiDB",
"TiDB Cloud",
"serverless",
"MySQL",
"edge",
"Vercel",
"Cloudflare",
"Netlify",
"Bun",
"Deno",
"database",
"SQL",
"Prisma"
],
"author": "Shi Yuhang <[email protected]>",
"license": "Apache-2.0",
"sideEffects": false,
"dependencies": {
"@prisma/driver-adapter-utils": "5.20.0"
},
"devDependencies": {
"@tidbcloud/serverless": "^0.1.0",
"@types/node": "^20.5.1",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"prettier": "^2.7.1"
},
"peerDependencies": {
"@tidbcloud/serverless": ">= 0.1.0"
}
}