@adkinn/astro-ai-readiness 0.0.7 → 0.0.9
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 +29 -13
- package/dist/{chunk-CADNETPK.js → chunk-4PXOR6CE.js} +11 -2
- package/dist/{chunk-THSVWYUX.js → chunk-4VPGX5IP.js} +3 -2
- package/dist/{chunk-WP6D4L7O.js → chunk-WYKIPW5J.js} +3 -2
- package/dist/{chunk-CO2DB4IE.js → chunk-XYQNZKKD.js} +56 -3
- package/dist/components/OrganizationSchema.astro +37 -20
- package/dist/components/PersonSchema.astro +26 -0
- package/dist/components/SoftwareApplicationSchema.astro +64 -0
- package/dist/components/WebSiteSchema.astro +8 -2
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +14 -10
- package/dist/components/types.d.ts +2 -0
- package/dist/config.d.ts +756 -38
- package/dist/config.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/outputs/agents-md.js +1 -1
- package/dist/outputs/llms-full.js +1 -1
- package/dist/outputs/llms-txt.js +1 -1
- package/package.json +1 -1
package/dist/config.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AstroIntegration } from 'astro';
|
|
2
2
|
import { AiReadinessConfig } from './config.js';
|
|
3
|
-
export { AgentsMdConfig, FounderConfig, LlmsFullConfig, LlmsTxtConfig, McpConfig, OrganizationConfig, RobotsTxtConfig, WebSiteConfig } from './config.js';
|
|
3
|
+
export { AgentsMdConfig, ContactPointConfig, FounderConfig, LlmsFullConfig, LlmsTxtConfig, McpConfig, OrganizationConfig, PersonConfig, RobotsTxtConfig, SoftwareApplicationConfig, WebSiteConfig } from './config.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
declare function aiReadiness(options: AiReadinessConfig): AstroIntegration;
|
package/dist/index.js
CHANGED
|
@@ -6,16 +6,16 @@ import {
|
|
|
6
6
|
} from "./chunk-36CGBNB5.js";
|
|
7
7
|
import {
|
|
8
8
|
aiReadinessConfigSchema
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-XYQNZKKD.js";
|
|
10
10
|
import {
|
|
11
11
|
writeLlmsTxt
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-WYKIPW5J.js";
|
|
13
13
|
import {
|
|
14
14
|
writeLlmsFullTxt
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-4VPGX5IP.js";
|
|
16
16
|
import {
|
|
17
17
|
writeAgentsMd
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-4PXOR6CE.js";
|
|
19
19
|
import "./chunk-V22PCH7G.js";
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
package/dist/outputs/llms-txt.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adkinn/astro-ai-readiness",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "AI Readiness toolkit for Astro — six JSON-LD components plus llms.txt, llms-full.txt, agents.md, robots.txt, and .well-known/mcp.json outputs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|