@kuckit/docs-module 3.0.3 → 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.
Files changed (2) hide show
  1. package/dist/styles.css +12 -0
  2. package/package.json +10 -8
@@ -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",
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",
@@ -17,12 +17,14 @@
17
17
  "./client": {
18
18
  "types": "./dist/client/index.d.ts",
19
19
  "default": "./dist/client/index.js"
20
- }
20
+ },
21
+ "./styles.css": "./dist/styles.css"
21
22
  },
22
23
  "kuckit": {
23
24
  "id": "kuckit.docs",
24
25
  "server": ".",
25
26
  "client": "./client",
27
+ "styles": "./styles.css",
26
28
  "setup": {
27
29
  "scaffolds": [
28
30
  {
@@ -42,24 +44,24 @@
42
44
  "devDependencies": {
43
45
  "@tailwindcss/typography": "^0.5"
44
46
  },
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"
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"
46
48
  }
47
49
  },
48
50
  "scripts": {
49
- "build": "tsdown",
51
+ "build": "tsdown && cp src/styles.css dist/styles.css",
50
52
  "prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
51
53
  },
52
54
  "peerDependencies": {
53
- "@kuckit/sdk": "^3.0.3",
54
- "@kuckit/sdk-react": "^3.0.3",
55
+ "@kuckit/sdk": "^3.0.5",
56
+ "@kuckit/sdk-react": "^3.0.5",
55
57
  "@tailwindcss/typography": "^0.5",
56
58
  "@tanstack/react-router": "^1",
57
59
  "react": "^18 || ^19",
58
60
  "typescript": "^5"
59
61
  },
60
62
  "dependencies": {
61
- "@kuckit/api": "^3.0.3",
62
- "@kuckit/domain": "^3.0.3",
63
+ "@kuckit/api": "^3.0.5",
64
+ "@kuckit/domain": "^3.0.5",
63
65
  "@fumadocs/mdx-remote": "^1.3.0",
64
66
  "gray-matter": "^4.0.3",
65
67
  "lucide-react": "^0.379.0",