-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "prisma-extension-selecting",
"version": "0.3.1",
"description": "Prisma client extension for predefining selections",
"license": "MIT",
"author": "Leo Aso",
"repository": "github:LeoAso/prisma-extension-selecting",
"homepage": "https://github.com/LeoAso/prisma-extension-selecting#readme",
"keywords": [
"Prisma",
"@prisma/client",
"extension",
"select",
"include"
],
"bugs": {
"url": "https://github.com/LeoAso/prisma-extension-selecting/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"test": "prisma db push --force-reset && jest",
"build": "tsc -b --clean && tsc"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"prisma": "^5.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@prisma/client": ">=5.0.0"
}
}