@kuckit/docs-module 3.0.4 → 3.0.5
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/styles.css +12 -0
- package/package.json +7 -7
package/dist/styles.css
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @kuckit/docs-module styles
|
|
3
|
+
*
|
|
4
|
+
* Import this in your app's CSS:
|
|
5
|
+
* @import "@kuckit/docs-module/styles.css";
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* Typography plugin for prose styling */
|
|
9
|
+
@plugin "@tailwindcss/typography";
|
|
10
|
+
|
|
11
|
+
/* Scan module components for Tailwind classes */
|
|
12
|
+
@source "./**/*.tsx";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuckit/docs-module",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "Documentation module for Kuckit using Fumadocs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server/module.js",
|
|
@@ -44,24 +44,24 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@tailwindcss/typography": "^0.5"
|
|
46
46
|
},
|
|
47
|
-
"postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n
|
|
47
|
+
"postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n ✅ Added CSS import to kuckit-modules.css\n\n See SETUP.md for full configuration: https://github.com/draphonix/kuckit"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "tsdown",
|
|
51
|
+
"build": "tsdown && cp src/styles.css dist/styles.css",
|
|
52
52
|
"prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@kuckit/sdk": "^3.0.
|
|
56
|
-
"@kuckit/sdk-react": "^3.0.
|
|
55
|
+
"@kuckit/sdk": "^3.0.5",
|
|
56
|
+
"@kuckit/sdk-react": "^3.0.5",
|
|
57
57
|
"@tailwindcss/typography": "^0.5",
|
|
58
58
|
"@tanstack/react-router": "^1",
|
|
59
59
|
"react": "^18 || ^19",
|
|
60
60
|
"typescript": "^5"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@kuckit/api": "^3.0.
|
|
64
|
-
"@kuckit/domain": "^3.0.
|
|
63
|
+
"@kuckit/api": "^3.0.5",
|
|
64
|
+
"@kuckit/domain": "^3.0.5",
|
|
65
65
|
"@fumadocs/mdx-remote": "^1.3.0",
|
|
66
66
|
"gray-matter": "^4.0.3",
|
|
67
67
|
"lucide-react": "^0.379.0",
|