@vibecheck-ai/mcp 24.6.7 → 24.6.8
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/LICENSE +21 -0
- package/README.md +4 -2
- package/dist/fsevents-X6WP4TKM.node +0 -0
- package/dist/index.js +13190 -9158
- package/package.json +23 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecheck-ai/mcp",
|
|
3
|
-
"version": "24.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "24.6.8",
|
|
4
|
+
"description": "VibeCheck MCP — the code intelligence layer for AI-built software, wired into your agent. Truth-grounded, runtime-aware, multi-agent. 16+ verification engines, runtime probes, and live truthpack context for Cursor, Claude, Windsurf, and any MCP-compatible client.",
|
|
5
5
|
"mcpName": "io.github.guardiavault-oss/vibecheck-mcp",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"publishConfig": {
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
],
|
|
27
27
|
"author": "VibeCheck Team",
|
|
28
28
|
"license": "MIT",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.11"
|
|
31
|
+
},
|
|
29
32
|
"repository": {
|
|
30
33
|
"type": "git",
|
|
31
34
|
"url": "git+https://vibecheckai.dev"
|
|
@@ -43,27 +46,18 @@
|
|
|
43
46
|
"bin": {
|
|
44
47
|
"vibecheck-mcp": "./dist/index.js"
|
|
45
48
|
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "tsup",
|
|
48
|
-
"compile": "tsc -p . --noEmit",
|
|
49
|
-
"typecheck": "tsc -p . --noEmit",
|
|
50
|
-
"test": "vitest run",
|
|
51
|
-
"lint": "eslint src/ --max-warnings 0",
|
|
52
|
-
"lint:fix": "eslint src/ --fix --max-warnings 0",
|
|
53
|
-
"test:watch": "vitest",
|
|
54
|
-
"verify-dist": "node scripts/verify-dist.mjs",
|
|
55
|
-
"release:check": "pnpm run build && pnpm run test && pnpm run verify-dist",
|
|
56
|
-
"prepublishOnly": "pnpm run release:check && node scripts/prepublish.cjs",
|
|
57
|
-
"postpublish": "node scripts/postpublish.cjs"
|
|
58
|
-
},
|
|
59
49
|
"dependencies": {
|
|
60
50
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
61
51
|
"@repo/shared": "^0.1.0",
|
|
62
52
|
"@repo/shared-types": "^1.1.0",
|
|
63
53
|
"@repo/subscriptions": "^1.0.0",
|
|
64
|
-
"@vibecheck-ai/cli": "^25.0.
|
|
54
|
+
"@vibecheck-ai/cli": "^25.0.3",
|
|
65
55
|
"@vibecheck/engines": "^2.0.0-beta.1",
|
|
66
|
-
"@vibecheck/roast": "^1.0.0"
|
|
56
|
+
"@vibecheck/roast": "^1.0.0",
|
|
57
|
+
"@vibecheck/x402-gate": "^0.1.0"
|
|
58
|
+
},
|
|
59
|
+
"optionalDependencies": {
|
|
60
|
+
"better-sqlite3": "^11.7.0"
|
|
67
61
|
},
|
|
68
62
|
"devDependencies": {
|
|
69
63
|
"@types/node": "^20.0.0",
|
|
@@ -71,5 +65,16 @@
|
|
|
71
65
|
"tsup": "^8.0.0",
|
|
72
66
|
"typescript": "^5.8.0",
|
|
73
67
|
"vitest": "^2.1.8"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"build": "tsup",
|
|
71
|
+
"compile": "tsc -p . --noEmit",
|
|
72
|
+
"typecheck": "tsc -p . --noEmit",
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"lint": "eslint src/ --max-warnings 0",
|
|
75
|
+
"lint:fix": "eslint src/ --fix --max-warnings 0",
|
|
76
|
+
"test:watch": "vitest",
|
|
77
|
+
"verify-dist": "node scripts/verify-dist.mjs",
|
|
78
|
+
"release:check": "pnpm run build && pnpm run test && pnpm run verify-dist"
|
|
74
79
|
}
|
|
75
|
-
}
|
|
80
|
+
}
|