supascan 0.1.5 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -49
- package/supascan.js +195 -0
- package/LICENCE +0 -22
- package/README.md +0 -115
- package/dist/supascan.js +0 -206
package/package.json
CHANGED
|
@@ -1,63 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supascan",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Automated security scanner for Supabase databases - detect exposed data, analyze RLS policies, and test RPC functions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Abhishek Govindarasu",
|
|
7
|
-
"main": "dist/supascan.js",
|
|
8
7
|
"type": "module",
|
|
8
|
+
"main": "./supascan.js",
|
|
9
9
|
"bin": {
|
|
10
|
-
"supascan": "
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
13
|
-
"dist/supascan.js"
|
|
14
|
-
],
|
|
15
|
-
"keywords": [
|
|
16
|
-
"supabase",
|
|
17
|
-
"security",
|
|
18
|
-
"analysis",
|
|
19
|
-
"cli",
|
|
20
|
-
"database",
|
|
21
|
-
"rls",
|
|
22
|
-
"postgres",
|
|
23
|
-
"security-audit",
|
|
24
|
-
"penetration-testing",
|
|
25
|
-
"vulnerability-scanner"
|
|
26
|
-
],
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/abhishekg999/supascan.git"
|
|
30
|
-
},
|
|
31
|
-
"homepage": "https://github.com/abhishekg999/supascan#readme",
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/abhishekg999/supascan/issues"
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"lint": "tsc --noEmit",
|
|
37
|
-
"start": "bun run src/cli/index.ts",
|
|
38
|
-
"format": "prettier --write .",
|
|
39
|
-
"build": "bun run build:binary && bun run build:bundle",
|
|
40
|
-
"build:binary": "bun run build.binary.ts",
|
|
41
|
-
"build:bundle": "bun run build.node.ts",
|
|
42
|
-
"test": "bun test",
|
|
43
|
-
"prepublishOnly": "bun run build:bundle"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@types/bun": "latest",
|
|
47
|
-
"@types/react": "^19",
|
|
48
|
-
"@types/react-dom": "^19",
|
|
49
|
-
"knip": "^5.64.3",
|
|
50
|
-
"prettier": "^3.6.2"
|
|
51
|
-
},
|
|
52
|
-
"peerDependencies": {
|
|
53
|
-
"typescript": "^5.9.3"
|
|
10
|
+
"supascan": "./supascan.js"
|
|
54
11
|
},
|
|
55
12
|
"dependencies": {
|
|
56
13
|
"@commander-js/extra-typings": "^14.0.0",
|
|
57
14
|
"@supabase/supabase-js": "^2.75.0",
|
|
58
15
|
"commander": "^14.0.1",
|
|
59
|
-
"picocolors": "^1.1.1"
|
|
60
|
-
"react": "^19",
|
|
61
|
-
"react-dom": "^19"
|
|
16
|
+
"picocolors": "^1.1.1"
|
|
62
17
|
}
|
|
63
18
|
}
|