-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 924 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
37
{
"name": "rls-scope",
"version": "1.0.8",
"description": "Verify proper scoping of your Supabase project's RLS policies with AI-generated pgTAP tests.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsc && chmod +x ./dist/index.js",
"start": "NODE_NO_WARNINGS=1 node dist/index.js",
"prepare": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@types/pg": "^8.11.10",
"dotenv": "^16.4.5",
"pg": "^8.13.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"bin": {
"rls-scope": "dist/index.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/xaac-ai/rls-scope",
"bugs": "https://github.com/xaac-ai/rls-scope/issues",
"license": "MIT"
}