-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.56 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
68
69
{
"author": {
"email": "[email protected]",
"name": "Jason Dark",
"url": "https://www.linkedin.com/in/jason-dark/"
},
"bin": {
"supabase-drizzle": "dist/cli/index.js"
},
"dependencies": {
"chalk": "^4",
"commander": "^12.1.0",
"drizzle-kit": "^0.25.0"
},
"description": "Manage Postgres RLS policies with Drizzle-like syntax, just as you manage your Postgres schema",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.34.1",
"eslint": "^9.12.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.8.1"
},
"files": [
"dist"
],
"keywords": [
"database",
"drizzle",
"migrations",
"orm",
"pg",
"policies",
"postgres",
"postgresql",
"PostgREST",
"rls",
"row level security",
"schema",
"supabase",
"ts",
"typescript"
],
"license": "MIT",
"main": "dist/index.js",
"name": "supabase-drizzle",
"repository": {
"type": "git",
"url": "https://github.com/jason-dark/supabase-drizzle.git"
},
"scripts": {
"build": "tsc && npx tsc-alias",
"lint": "eslint 'src/**/*.{ts}'",
"test": "jest"
},
"types": "dist/index.d.ts",
"version": "1.0.0"
}