@next-vibe/checker 1.0.51 → 1.0.52

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/README.md CHANGED
@@ -11,7 +11,7 @@ Run Oxlint, ESLint, and TypeScript in parallel. Fast caching, auto-fix by defaul
11
11
  - **Smart caching** - 10x faster on large projects (41s → 4s)
12
12
  - **Auto-fix** - Fixes issues by default
13
13
  - **100+ rules** - React, TypeScript, a11y, Next.js, Node.js, custom plugins
14
- - **MCP server** - Integrate with Claude via Model Context Protocol
14
+ - **MCP server** - Integrate with your AI agent via Model Context Protocol
15
15
  - **Fast type checking** - tsgo (2-3x faster than tsc)
16
16
 
17
17
  ## Performance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-vibe/checker",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "TypeScript code quality checker with CLI and MCP support",
5
5
  "keywords": [
6
6
  "api",
@@ -49,7 +49,7 @@ interface CliOptions {
49
49
  * CLI Constants to avoid literal strings
50
50
  */
51
51
  const CLI_NAME = "vibe-check" as const;
52
- const CLI_VERSION = "1.0.51";
52
+ const CLI_VERSION = "1.0.52";
53
53
  const DEFAULT_OUTPUT = "pretty" as const;
54
54
 
55
55
  import { cliEnv } from "./env";