tuiuiu.js 1.0.1 → 1.0.2
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 +1 -1
- package/dist/cli/commands/help.js +1 -1
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +2 -2
- package/dist/mcp/index.d.ts +2 -2
- package/dist/mcp/index.js +2 -2
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli/index.d.ts
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Usage:
|
|
6
6
|
* npx tuiuiu # Show help
|
|
7
7
|
* npx tuiuiu storybook # Run component storybook
|
|
8
|
-
* npx tuiuiu mcp # Start MCP server (stdio)
|
|
9
|
-
* npx tuiuiu mcp --http # Start MCP server (HTTP)
|
|
8
|
+
* npx tuiuiu.js@latest mcp # Start MCP server (stdio)
|
|
9
|
+
* npx tuiuiu.js@latest mcp --http # Start MCP server (HTTP)
|
|
10
10
|
* npx tuiuiu --version # Show version
|
|
11
11
|
* npx tuiuiu --help # Show help
|
|
12
12
|
*/
|
package/dist/cli/index.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Usage:
|
|
6
6
|
* npx tuiuiu # Show help
|
|
7
7
|
* npx tuiuiu storybook # Run component storybook
|
|
8
|
-
* npx tuiuiu mcp # Start MCP server (stdio)
|
|
9
|
-
* npx tuiuiu mcp --http # Start MCP server (HTTP)
|
|
8
|
+
* npx tuiuiu.js@latest mcp # Start MCP server (stdio)
|
|
9
|
+
* npx tuiuiu.js@latest mcp --http # Start MCP server (HTTP)
|
|
10
10
|
* npx tuiuiu --version # Show version
|
|
11
11
|
* npx tuiuiu --help # Show help
|
|
12
12
|
*/
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Provides AI assistants with access to Tuiuiu documentation.
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* npx tuiuiu mcp # Start stdio server (for Claude Code)
|
|
8
|
-
* npx tuiuiu mcp --http # Start HTTP server
|
|
7
|
+
* npx tuiuiu.js@latest mcp # Start stdio server (for Claude Code)
|
|
8
|
+
* npx tuiuiu.js@latest mcp --http # Start HTTP server
|
|
9
9
|
*/
|
|
10
10
|
export { MCPServer, runMcpServer } from './server.js';
|
|
11
11
|
export type { MCPServerOptions } from './server.js';
|
package/dist/mcp/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Provides AI assistants with access to Tuiuiu documentation.
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* npx tuiuiu mcp # Start stdio server (for Claude Code)
|
|
8
|
-
* npx tuiuiu mcp --http # Start HTTP server
|
|
7
|
+
* npx tuiuiu.js@latest mcp # Start stdio server (for Claude Code)
|
|
8
|
+
* npx tuiuiu.js@latest mcp --http # Start HTTP server
|
|
9
9
|
*/
|
|
10
10
|
export { MCPServer, runMcpServer } from './server.js';
|
|
11
11
|
export { allComponents, allHooks, allThemes, categories, } from './docs-data.js';
|
package/dist/version.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
// VERSION CONSTANT - Updated automatically during publish
|
|
15
15
|
// =============================================================================
|
|
16
16
|
// This line is auto-updated by scripts/inject-version.js during prepublishOnly
|
|
17
|
-
const VERSION = '1.0.
|
|
17
|
+
const VERSION = '1.0.2';
|
|
18
18
|
// Cached version after first load
|
|
19
19
|
let _version = null;
|
|
20
20
|
/**
|