create-dox 0.3.2 → 0.3.4

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.
@@ -3,7 +3,7 @@ import {
3
3
  initGit,
4
4
  installDeps,
5
5
  scaffold
6
- } from "./chunk-673L75C2.js";
6
+ } from "./chunk-YY5QPPAG.js";
7
7
 
8
8
  // src/migrate/index.ts
9
9
  import { mkdirSync as mkdirSync2, copyFileSync as copyFileSync2, readFileSync as readFileSync3, writeFileSync, existsSync as existsSync3, mkdtempSync, rmSync } from "fs";
@@ -107,6 +107,26 @@ const client = create({ apiKey: process.env.API_KEY })
107
107
  That's the basics \u2014 you're ready to build. Explore the guides for common workflows,
108
108
  open the API reference to try endpoints against a live "Try It" console, or edit this
109
109
  page at \`src/content/quickstart.mdx\` to document your own onboarding flow.
110
+ `,
111
+ "changelog.mdx": `---
112
+ title: Changelog
113
+ description: Notable changes, releases, and improvements to {NAME}.
114
+ keywords:
115
+ - {NAME}
116
+ - changelog
117
+ - releases
118
+ - updates
119
+ ---
120
+
121
+ ## v0.1.0
122
+
123
+ The first release of your **{NAME}** documentation.
124
+
125
+ - Initial docs site scaffolded with [Dox](https://github.com/kenny-io/Dox)
126
+ - Agent-ready endpoints live: \`/llms.txt\`, \`/ai.txt\`, \`/api/docs-index\`, and \`/api/agent-readiness\`
127
+ - Starter guides in the Overview tab and an interactive API reference
128
+
129
+ Edit this page at \`src/content/changelog.mdx\` to announce your own releases as you ship.
110
130
  `
111
131
  };
112
132
  function buildStarterDocsJson({
package/dist/index.js CHANGED
@@ -2,13 +2,13 @@
2
2
  import {
3
3
  migrateDocs,
4
4
  parseGitHubUrl
5
- } from "./chunk-AFJGDIXU.js";
5
+ } from "./chunk-QB4U3KFX.js";
6
6
  import {
7
7
  logo,
8
8
  scaffold,
9
9
  slugify,
10
10
  success
11
- } from "./chunk-673L75C2.js";
11
+ } from "./chunk-YY5QPPAG.js";
12
12
 
13
13
  // src/index.ts
14
14
  import { existsSync as existsSync3, readdirSync as readdirSync2 } from "fs";
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  migrateDocs
4
- } from "../chunk-AFJGDIXU.js";
5
- import "../chunk-673L75C2.js";
4
+ } from "../chunk-QB4U3KFX.js";
5
+ import "../chunk-YY5QPPAG.js";
6
6
  export {
7
7
  migrateDocs
8
8
  };
package/dist/scaffold.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  scaffold
4
- } from "./chunk-673L75C2.js";
4
+ } from "./chunk-YY5QPPAG.js";
5
5
  export {
6
6
  scaffold
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-dox",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Scaffold a new Dox documentation project",
5
5
  "type": "module",
6
6
  "engines": {
@@ -48,5 +48,14 @@
48
48
  "agent-native",
49
49
  "mcp",
50
50
  "create"
51
- ]
51
+ ],
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/kenny-io/Dox.git",
55
+ "directory": "packages/create-dox"
56
+ },
57
+ "homepage": "https://github.com/kenny-io/Dox#readme",
58
+ "bugs": {
59
+ "url": "https://github.com/kenny-io/Dox/issues"
60
+ }
52
61
  }