-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "prisma-extension-rls",
"version": "1.1.0",
"description": "Support Row Level Security with Prisma",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepublish": "rm -rf dist && npm run build",
"build": "tsc",
"prisma:migrate": "dotenv -c -- prisma migrate deploy",
"test": "dotenv -c -- jest --bail"
},
"keywords": [
"prisma",
"supabase",
"postgres",
"rls"
],
"author": "kltk <haig8@msn.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kltk/prisma-extension-rls.git"
},
"homepage": "https://github.com/kltk/prisma-extension-rls#readme",
"bugs": {
"url": "https://github.com/kltk/prisma-extension-rls/issues"
},
"devDependencies": {
"@prisma/client": "^5.17.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"dotenv-cli": "^7.4.2",
"jest": "^29.7.0",
"prisma": "^5.17.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@prisma/client": "^4.7.0 || ^5.0.0",
"prisma": "^4.7.0 || ^5.0.0"
}
}