@kuckit/docs-module 2.0.6 → 3.0.0
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/package.json +7 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuckit/docs-module",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Documentation module for Kuckit using Fumadocs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server/module.js",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
}
|
|
37
37
|
],
|
|
38
38
|
"configDefaults": {
|
|
39
|
-
"docsDir": "content/docs",
|
|
39
|
+
"docsDir": "../../content/docs",
|
|
40
40
|
"basePath": "/docs"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@tailwindcss/typography": "^0.5"
|
|
44
44
|
},
|
|
45
|
-
"postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n\n ⚠️ Add the following to your CSS file (e.g., apps/web/src/index.css):\n\n @plugin \"@tailwindcss/typography\";\n @source \"
|
|
45
|
+
"postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n\n ⚠️ Add the following to your CSS file (e.g., apps/web/src/index.css):\n\n @plugin \"@tailwindcss/typography\";\n @source \"<path-to-node_modules>/@kuckit/docs-module/dist/**/*.js\";\n\n NOTE: Replace <path-to-node_modules> with the relative path from your CSS file\n to node_modules. For monorepos: ../../../node_modules (from apps/web/src/)\n For standalone: ../node_modules\n\n See SETUP.md for full configuration: https://github.com/draphonix/kuckit"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
@@ -50,19 +50,17 @@
|
|
|
50
50
|
"prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@kuckit/sdk": "^
|
|
54
|
-
"@kuckit/sdk-react": "^
|
|
53
|
+
"@kuckit/sdk": "^3.0.0",
|
|
54
|
+
"@kuckit/sdk-react": "^3.0.0",
|
|
55
55
|
"@tailwindcss/typography": "^0.5",
|
|
56
56
|
"@tanstack/react-router": "^1",
|
|
57
57
|
"react": "^18 || ^19",
|
|
58
58
|
"typescript": "^5"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@kuckit/api": "^
|
|
62
|
-
"@kuckit/domain": "^
|
|
61
|
+
"@kuckit/api": "^3.0.0",
|
|
62
|
+
"@kuckit/domain": "^3.0.0",
|
|
63
63
|
"@fumadocs/mdx-remote": "^1.3.0",
|
|
64
|
-
"fumadocs-core": "^15.3.1",
|
|
65
|
-
"fumadocs-ui": "^15.3.1",
|
|
66
64
|
"gray-matter": "^4.0.3",
|
|
67
65
|
"lucide-react": "^0.379.0",
|
|
68
66
|
"zod": "^4.1.11"
|