dogsbay 0.0.0-init
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 +10 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# dogsbay
|
|
2
|
+
|
|
3
|
+
> **Placeholder — the real CLI is on its way.**
|
|
4
|
+
|
|
5
|
+
When v0.1.0 ships, `npx dogsbay site init my-docs` will scaffold a
|
|
6
|
+
documentation site with markdown / MkDocs / Obsidian / OpenAPI sources,
|
|
7
|
+
72 themed components, agent-readable mirrors, and per-source
|
|
8
|
+
versioning.
|
|
9
|
+
|
|
10
|
+
Status, roadmap, and source: https://github.com/dogsbay/dogsbay
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dogsbay",
|
|
3
|
+
"version": "0.0.0-init",
|
|
4
|
+
"description": "Reserved name for the upcoming Dogsbay documentation CLI. Coming soon.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"files": ["README.md"],
|
|
7
|
+
"keywords": [
|
|
8
|
+
"dogsbay",
|
|
9
|
+
"documentation",
|
|
10
|
+
"docs",
|
|
11
|
+
"cli",
|
|
12
|
+
"placeholder"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/dogsbay/dogsbay.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/dogsbay/dogsbay",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/dogsbay/dogsbay/issues"
|
|
21
|
+
}
|
|
22
|
+
}
|