create-mantiq 0.0.2 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/templates.ts +25 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mantiq",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "description": "Scaffold a new MantiqJS application",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/templates.ts CHANGED
@@ -23,18 +23,18 @@ export function getTemplates(ctx: TemplateContext): Record<string, string> {
23
23
  mantiq: 'bun run mantiq.ts',
24
24
  },
25
25
  dependencies: {
26
- '@mantiq/auth': '^0.0.1',
27
- '@mantiq/cli': '^0.0.1',
28
- '@mantiq/core': '^0.0.1',
29
- '@mantiq/database': '^0.0.1',
30
- '@mantiq/events': '^0.0.1',
31
- '@mantiq/filesystem': '^0.0.1',
32
- '@mantiq/heartbeat': '^0.0.1',
33
- '@mantiq/helpers': '^0.0.1',
34
- '@mantiq/logging': '^0.0.1',
35
- '@mantiq/queue': '^0.0.1',
36
- '@mantiq/realtime': '^0.0.1',
37
- '@mantiq/validation': '^0.0.1',
26
+ '@mantiq/auth': '^0.1.0',
27
+ '@mantiq/cli': '^0.1.0',
28
+ '@mantiq/core': '^0.1.0',
29
+ '@mantiq/database': '^0.1.0',
30
+ '@mantiq/events': '^0.1.0',
31
+ '@mantiq/filesystem': '^0.1.0',
32
+ '@mantiq/heartbeat': '^0.1.0',
33
+ '@mantiq/helpers': '^0.1.0',
34
+ '@mantiq/logging': '^0.1.0',
35
+ '@mantiq/queue': '^0.1.0',
36
+ '@mantiq/realtime': '^0.1.0',
37
+ '@mantiq/validation': '^0.1.0',
38
38
  },
39
39
  devDependencies: {
40
40
  'bun-types': 'latest',
@@ -595,19 +595,19 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
595
595
  'build:frontend': `vite build && vite build --ssr ${kit === 'react' ? 'src/ssr.tsx' : 'src/ssr.ts'} --outDir bootstrap/ssr`,
596
596
  },
597
597
  dependencies: {
598
- '@mantiq/auth': '^0.0.1',
599
- '@mantiq/cli': '^0.0.1',
600
- '@mantiq/core': '^0.0.1',
601
- '@mantiq/database': '^0.0.1',
602
- '@mantiq/events': '^0.0.1',
603
- '@mantiq/filesystem': '^0.0.1',
604
- '@mantiq/heartbeat': '^0.0.1',
605
- '@mantiq/helpers': '^0.0.1',
606
- '@mantiq/logging': '^0.0.1',
607
- '@mantiq/queue': '^0.0.1',
608
- '@mantiq/realtime': '^0.0.1',
609
- '@mantiq/validation': '^0.0.1',
610
- '@mantiq/vite': '^0.0.1',
598
+ '@mantiq/auth': '^0.1.0',
599
+ '@mantiq/cli': '^0.1.0',
600
+ '@mantiq/core': '^0.1.0',
601
+ '@mantiq/database': '^0.1.0',
602
+ '@mantiq/events': '^0.1.0',
603
+ '@mantiq/filesystem': '^0.1.0',
604
+ '@mantiq/heartbeat': '^0.1.0',
605
+ '@mantiq/helpers': '^0.1.0',
606
+ '@mantiq/logging': '^0.1.0',
607
+ '@mantiq/queue': '^0.1.0',
608
+ '@mantiq/realtime': '^0.1.0',
609
+ '@mantiq/validation': '^0.1.0',
610
+ '@mantiq/vite': '^0.1.0',
611
611
  },
612
612
  devDependencies: {
613
613
  'bun-types': 'latest',