@justmpm/firebase-audit 0.3.0 → 0.4.0
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/dist/{chunk-N57MCLTZ.js → chunk-5PVQB3ZI.js} +473 -59
- package/dist/{chunk-GUSNXUAT.js → chunk-NJBCSW7E.js} +18 -1
- package/dist/{chunk-CPEIPRCF.js → chunk-TVEZQU7C.js} +47 -10
- package/dist/chunk-YVV7YRF3.js +165 -0
- package/dist/cli.js +7 -6
- package/dist/{drift-BEXSL2IX.js → drift-KU7HWL7M.js} +1 -1
- package/dist/index.d.ts +99 -12
- package/dist/index.js +46 -4
- package/dist/mcp-cli.d.ts +1 -0
- package/dist/mcp-cli.js +13 -0
- package/dist/mcp.d.ts +19 -0
- package/dist/mcp.js +11 -0
- package/dist/{scan-773ZFQXB.js → scan-6FRUE5BE.js} +1 -1
- package/dist/{verify-Y7BWAFPL.js → verify-R6LI2KNZ.js} +1 -1
- package/package.json +5 -4
package/dist/mcp.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justmpm/firebase-audit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Auditor de consistência e segurança para projetos Firebase: código + Rules + índices + contrato vs comportamento. Static-first, nunca inventa certeza.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"firebase",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"bin": {
|
|
19
|
-
"firebase-audit": "dist/cli.js"
|
|
19
|
+
"firebase-audit": "dist/cli.js",
|
|
20
|
+
"firebase-audit-mcp": "dist/mcp-cli.js"
|
|
20
21
|
},
|
|
21
22
|
"exports": {
|
|
22
23
|
".": {
|
|
@@ -31,8 +32,8 @@
|
|
|
31
32
|
"skill"
|
|
32
33
|
],
|
|
33
34
|
"scripts": {
|
|
34
|
-
"build": "tsup src/index.ts src/cli.ts --format esm --dts --clean",
|
|
35
|
-
"dev": "tsup src/index.ts src/cli.ts --format esm --dts --watch",
|
|
35
|
+
"build": "tsup src/index.ts src/cli.ts src/mcp.ts src/mcp-cli.ts --format esm --dts --clean",
|
|
36
|
+
"dev": "tsup src/index.ts src/cli.ts src/mcp.ts src/mcp-cli.ts --format esm --dts --watch",
|
|
36
37
|
"prepublishOnly": "npm run build",
|
|
37
38
|
"typecheck": "tsc --noEmit",
|
|
38
39
|
"test": "vitest run"
|