create-mantiq 0.8.0 → 0.9.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
CHANGED
package/src/templates.ts
CHANGED
|
@@ -22,7 +22,7 @@ export function getTemplates(ctx: TemplateContext): Record<string, string> {
|
|
|
22
22
|
dependencies: {
|
|
23
23
|
'@mantiq/auth': '^0.2.0',
|
|
24
24
|
'@mantiq/cli': '^0.1.6',
|
|
25
|
-
'@mantiq/core': '^0.
|
|
25
|
+
'@mantiq/core': '^0.3.0',
|
|
26
26
|
'@mantiq/database': '^0.1.4',
|
|
27
27
|
'@mantiq/events': '^0.1.2',
|
|
28
28
|
'@mantiq/filesystem': '^0.1.2',
|
|
@@ -781,10 +781,10 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
|
|
|
781
781
|
|
|
782
782
|
// ── package.json ────────────────────────────────────────────────────────
|
|
783
783
|
const frameworkDevDeps: Record<string, string> = kit === 'react'
|
|
784
|
-
? { 'react': '^19.0.0', 'react-dom': '^19.0.0', '@vitejs/plugin-react': '^
|
|
784
|
+
? { 'react': '^19.0.0', 'react-dom': '^19.0.0', '@vitejs/plugin-react': '^6.0.0', '@types/react': '^19.0.0', '@types/react-dom': '^19.0.0' }
|
|
785
785
|
: kit === 'vue'
|
|
786
|
-
? { 'vue': '^3.5.0', '@vitejs/plugin-vue': '^
|
|
787
|
-
: { 'svelte': '^5.0.0', '@sveltejs/vite-plugin-svelte': '^
|
|
786
|
+
? { 'vue': '^3.5.0', '@vitejs/plugin-vue': '^6.0.0' }
|
|
787
|
+
: { 'svelte': '^5.0.0', '@sveltejs/vite-plugin-svelte': '^7.0.0' }
|
|
788
788
|
|
|
789
789
|
// UI library deps (shadcn + icons) — must match what the stubs actually import
|
|
790
790
|
const uiDeps: Record<string, string> = kit === 'react'
|
|
@@ -811,7 +811,7 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
|
|
|
811
811
|
dependencies: {
|
|
812
812
|
'@mantiq/auth': '^0.2.0',
|
|
813
813
|
'@mantiq/cli': '^0.1.6',
|
|
814
|
-
'@mantiq/core': '^0.
|
|
814
|
+
'@mantiq/core': '^0.3.0',
|
|
815
815
|
'@mantiq/database': '^0.1.4',
|
|
816
816
|
'@mantiq/events': '^0.1.2',
|
|
817
817
|
'@mantiq/filesystem': '^0.1.2',
|
|
@@ -831,7 +831,7 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
|
|
|
831
831
|
devDependencies: {
|
|
832
832
|
'bun-types': 'latest',
|
|
833
833
|
'typescript': '^5.7.0',
|
|
834
|
-
'vite': '^
|
|
834
|
+
'vite': '^8.0.0',
|
|
835
835
|
'tailwindcss': '^4.0.0',
|
|
836
836
|
'@tailwindcss/vite': '^4.0.0',
|
|
837
837
|
...frameworkDevDeps,
|