-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 773 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 773 Bytes
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
{
"name": "pocketbase-security",
"version": "0.2.0",
"description": "Audit PocketBase projects for permissive API rules. Detects empty rules, over-permissive auth.id != '' grants, missing admin gates. Active probe confirms leaks live with anonymous fetch.",
"type": "module",
"bin": {
"pocketbase-security": "./scripts/audit.js"
},
"scripts": {
"audit": "node scripts/audit.js",
"postinstall": "node scripts/postinstall.js || true"
},
"keywords": [
"pocketbase",
"security",
"audit",
"api-rules",
"rls"
],
"author": "Renzo Madueno (@Perufitlife)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Perufitlife/pocketbase-security-skill"
},
"engines": {
"node": ">=18"
}
}