create-specra 0.1.2 → 0.1.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-specra",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool to scaffold a new Specra documentation site with Next.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,6 +28,8 @@ const nextConfig = {
28
28
  // Empty turbopack config to silence the warning
29
29
  // Turbopack handles file watching automatically
30
30
  turbopack: {},
31
+ // Prevent next-mdx-remote from being bundled externally
32
+ serverExternalPackages: [],
31
33
  async redirects() {
32
34
  return redirects
33
35
  },
@@ -54,6 +54,8 @@ const nextConfig = {
54
54
  },
55
55
  // Empty turbopack config to silence the warning
56
56
  turbopack: {},
57
+ // Prevent next-mdx-remote from being bundled externally
58
+ serverExternalPackages: [],
57
59
  async redirects() {
58
60
  return redirects
59
61
  },
@@ -18,7 +18,7 @@
18
18
  "next": "^16.1.0",
19
19
  "react": "^19.2.3",
20
20
  "react-dom": "^19.2.3",
21
- "specra": "^0.1.1"
21
+ "specra": "^0.1.3"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@tailwindcss/postcss": "^4.1.9",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "./lib/config.types.ts",
2
+ "$schema": "./specra.config.schema.json",
3
3
  "site": {
4
4
  "title": "Specra Docs",
5
5
  "description": "Comprehensive documentation for your project",
@@ -94,7 +94,13 @@
94
94
  }
95
95
  ]
96
96
  }
97
- ]
97
+ ],
98
+ "branding": {
99
+ "showBranding": true,
100
+ "logo": "https://tokenkit.s3.amazonaws.com/logo_fa8c1a32da814a209b06c742fbf2a862.png",
101
+ "title": "Specra",
102
+ "url": "https://specra.dev"
103
+ }
98
104
  },
99
105
  "banner": {
100
106
  "enabled": false,