nuxt-ai-ready 0.4.0 → 0.4.1

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/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "nuxt": ">=4.0.0"
5
5
  },
6
6
  "configKey": "aiReady",
7
- "version": "0.4.0",
7
+ "version": "0.4.1",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-ai-ready",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "description": "Best practice AI & LLM discoverability for Nuxt sites.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -1,17 +0,0 @@
1
- declare const _default: {
2
- uri: string;
3
- name: string;
4
- description: string;
5
- metadata: {
6
- mimeType: string;
7
- };
8
- cache: "1h";
9
- handler(uri: URL): Promise<{
10
- contents: {
11
- uri: string;
12
- mimeType: string;
13
- text: string;
14
- }[];
15
- }>;
16
- };
17
- export default _default;
@@ -1,16 +0,0 @@
1
- /**
2
- * Lists all pages with metadata
3
- */
4
- declare const _default: {
5
- name: string;
6
- description: string;
7
- inputSchema: {};
8
- cache: "1h";
9
- handler(): Promise<{
10
- content: {
11
- type: "text";
12
- text: string;
13
- }[];
14
- }>;
15
- };
16
- export default _default;
@@ -1,3 +0,0 @@
1
- import type { McpToolDefinition } from '@nuxtjs/mcp-toolkit';
2
- declare const tool: McpToolDefinition;
3
- export default tool;