-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@prisma/extension-read-replicas",
"version": "0.2.2",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/prisma/extension-read-replicas",
"repository": {
"type": "git",
"url": "https://github.com/prisma/extension-read-replicas.git"
},
"files": [
"dist",
"types"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "tsup src/index.ts --format=cjs,esm --dts",
"demo": "node -r esbuild-register demo/index.ts",
"lint": "eslint . && prettier -c .",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"test": "jest",
"typecheck": "tsc"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"peerDependencies": {
"@prisma/client": "^5.2.0"
},
"devDependencies": {
"@prisma/client": "5.2.0",
"@swc/core": "^1.3.73",
"@swc/jest": "^0.2.27",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.3",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"esbuild": "^0.18.17",
"esbuild-node-externals": "^1.8.0",
"esbuild-register": "^3.4.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"execa": "^5.1.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prisma": "5.2.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}