@coze-arch/cli 0.0.1-alpha.e8683e → 0.0.1-alpha.e9ff73

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 (133) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +25 -16
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
  3. package/lib/__templates__/expo/README.md +2 -2
  4. package/lib/__templates__/expo/client/app/+not-found.tsx +30 -0
  5. package/lib/__templates__/expo/client/app.config.ts +2 -2
  6. package/lib/__templates__/expo/client/eslint.config.mjs +17 -1
  7. package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
  8. package/lib/__templates__/expo/client/metro.config.js +3 -0
  9. package/lib/__templates__/expo/client/package.json +36 -34
  10. package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
  11. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  12. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  13. package/lib/__templates__/expo/package.json +3 -0
  14. package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
  15. package/lib/__templates__/expo/pnpm-lock.yaml +1318 -2636
  16. package/lib/__templates__/expo/server/package.json +9 -7
  17. package/lib/__templates__/expo/server/src/index.ts +1 -0
  18. package/lib/__templates__/expo/template.config.js +56 -0
  19. package/lib/__templates__/native-static/.coze +11 -0
  20. package/lib/__templates__/native-static/index.html +33 -0
  21. package/lib/__templates__/native-static/styles/main.css +136 -0
  22. package/lib/__templates__/native-static/template.config.js +22 -0
  23. package/lib/__templates__/nextjs/_gitignore +3 -0
  24. package/lib/__templates__/nextjs/next.config.ts +1 -1
  25. package/lib/__templates__/nextjs/package.json +4 -1
  26. package/lib/__templates__/nextjs/pnpm-lock.yaml +1066 -926
  27. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  28. package/lib/__templates__/nextjs/scripts/dev.sh +1 -1
  29. package/lib/__templates__/nextjs/scripts/start.sh +1 -1
  30. package/lib/__templates__/nextjs/server.ts +35 -0
  31. package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
  32. package/lib/__templates__/nextjs/template.config.js +49 -14
  33. package/lib/__templates__/nuxt-app/.coze +12 -0
  34. package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +21 -0
  35. package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +64 -0
  36. package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +31 -0
  37. package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +1 -0
  38. package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +19 -0
  39. package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +14 -0
  40. package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +6 -0
  41. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +17 -0
  42. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +3 -0
  43. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +201 -0
  44. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +203 -0
  45. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +110 -0
  46. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +140 -0
  47. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +152 -0
  48. package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +35 -0
  49. package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +24 -0
  50. package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +1 -0
  51. package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +69 -0
  52. package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +360 -0
  53. package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +11 -0
  54. package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +79 -0
  55. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +14 -0
  56. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +151 -0
  57. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +17 -0
  58. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +64 -0
  59. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +17 -0
  60. package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +3 -0
  61. package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +30 -0
  62. package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +32 -0
  63. package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +10 -0
  64. package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
  65. package/lib/__templates__/nuxt-app/README.md +83 -0
  66. package/lib/__templates__/nuxt-app/_gitignore +24 -0
  67. package/lib/__templates__/nuxt-app/_npmrc +23 -0
  68. package/lib/__templates__/nuxt-app/app/app.vue +193 -0
  69. package/lib/__templates__/nuxt-app/nuxt.config.ts +56 -0
  70. package/lib/__templates__/nuxt-app/package.json +28 -0
  71. package/lib/__templates__/nuxt-app/pnpm-lock.yaml +7202 -0
  72. package/lib/__templates__/nuxt-app/public/favicon.ico +0 -0
  73. package/lib/__templates__/nuxt-app/public/robots.txt +2 -0
  74. package/lib/__templates__/nuxt-app/scripts/build.sh +14 -0
  75. package/lib/__templates__/nuxt-app/scripts/dev.sh +33 -0
  76. package/lib/__templates__/nuxt-app/scripts/prepare.sh +14 -0
  77. package/lib/__templates__/nuxt-app/scripts/start.sh +15 -0
  78. package/lib/__templates__/nuxt-app/template.config.js +78 -0
  79. package/lib/__templates__/nuxt-app/tsconfig.json +18 -0
  80. package/lib/__templates__/taro/.coze +14 -0
  81. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  82. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  83. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  84. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
  85. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  86. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
  87. package/lib/__templates__/taro/README.md +751 -0
  88. package/lib/__templates__/taro/_gitignore +40 -0
  89. package/lib/__templates__/taro/_npmrc +18 -0
  90. package/lib/__templates__/taro/babel.config.js +12 -0
  91. package/lib/__templates__/taro/config/dev.ts +9 -0
  92. package/lib/__templates__/taro/config/index.ts +223 -0
  93. package/lib/__templates__/taro/config/prod.ts +34 -0
  94. package/lib/__templates__/taro/eslint.config.mjs +80 -0
  95. package/lib/__templates__/taro/key/private.appid.key +0 -0
  96. package/lib/__templates__/taro/package.json +107 -0
  97. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  98. package/lib/__templates__/taro/pnpm-lock.yaml +23100 -0
  99. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  100. package/lib/__templates__/taro/project.config.json +15 -0
  101. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  102. package/lib/__templates__/taro/server/package.json +40 -0
  103. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  104. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  105. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  106. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  107. package/lib/__templates__/taro/server/src/main.ts +49 -0
  108. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  109. package/lib/__templates__/taro/src/app.config.ts +11 -0
  110. package/lib/__templates__/taro/src/app.css +52 -0
  111. package/lib/__templates__/taro/src/app.tsx +9 -0
  112. package/lib/__templates__/taro/src/index.html +39 -0
  113. package/lib/__templates__/taro/src/network.ts +39 -0
  114. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  115. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  116. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  117. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  118. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  119. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
  120. package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
  121. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  122. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  123. package/lib/__templates__/taro/template.config.js +68 -0
  124. package/lib/__templates__/taro/tsconfig.json +29 -0
  125. package/lib/__templates__/taro/types/global.d.ts +32 -0
  126. package/lib/__templates__/templates.json +68 -0
  127. package/lib/__templates__/vite/package.json +5 -1
  128. package/lib/__templates__/vite/pnpm-lock.yaml +146 -1659
  129. package/lib/__templates__/vite/src/main.ts +17 -47
  130. package/lib/__templates__/vite/template.config.js +49 -14
  131. package/lib/__templates__/vite/vite.config.ts +1 -0
  132. package/lib/cli.js +617 -128
  133. package/package.json +2 -1
@@ -0,0 +1,152 @@
1
+ {
2
+ "compilerOptions": {
3
+ "paths": {
4
+ "@unhead/vue": [
5
+ "../node_modules/.pnpm/@unhead+vue@2.1.12_vue@3.5.30_typescript@5.9.3_/node_modules/@unhead/vue"
6
+ ],
7
+ "@nuxt/devtools": [
8
+ "../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/@nuxt/devtools"
9
+ ],
10
+ "@vue/runtime-core": [
11
+ "../node_modules/.pnpm/@vue+runtime-core@3.5.30/node_modules/@vue/runtime-core"
12
+ ],
13
+ "@vue/compiler-sfc": [
14
+ "../node_modules/.pnpm/@vue+compiler-sfc@3.5.30/node_modules/@vue/compiler-sfc"
15
+ ],
16
+ "unplugin-vue-router/client": [
17
+ "../node_modules/.pnpm/unplugin-vue-router@0.19.2_@vue+compiler-sfc@3.5.30_vue-router@4.6.4_vue@3.5.30_typescript@5._xfw4hbqe7tycclfp37765o3fjq/node_modules/unplugin-vue-router/client"
18
+ ],
19
+ "@nuxt/schema": [
20
+ "../node_modules/.pnpm/@nuxt+schema@4.3.1/node_modules/@nuxt/schema"
21
+ ],
22
+ "nuxt": [
23
+ "../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt"
24
+ ],
25
+ "vite/client": [
26
+ "../node_modules/.pnpm/vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2/node_modules/vite/client"
27
+ ],
28
+ "nitropack/types": [
29
+ "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/types"
30
+ ],
31
+ "nitropack/runtime": [
32
+ "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/runtime"
33
+ ],
34
+ "nitropack": [
35
+ "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack"
36
+ ],
37
+ "defu": [
38
+ "../node_modules/.pnpm/defu@6.1.4/node_modules/defu"
39
+ ],
40
+ "h3": [
41
+ "../node_modules/.pnpm/h3@1.15.6/node_modules/h3"
42
+ ],
43
+ "consola": [
44
+ "../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
45
+ ],
46
+ "ofetch": [
47
+ "../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
48
+ ],
49
+ "crossws": [
50
+ "../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
51
+ ],
52
+ "~": [
53
+ "../app"
54
+ ],
55
+ "~/*": [
56
+ "../app/*"
57
+ ],
58
+ "@": [
59
+ "../app"
60
+ ],
61
+ "@/*": [
62
+ "../app/*"
63
+ ],
64
+ "~~": [
65
+ ".."
66
+ ],
67
+ "~~/*": [
68
+ "../*"
69
+ ],
70
+ "@@": [
71
+ ".."
72
+ ],
73
+ "@@/*": [
74
+ "../*"
75
+ ],
76
+ "#shared": [
77
+ "../shared"
78
+ ],
79
+ "#shared/*": [
80
+ "../shared/*"
81
+ ],
82
+ "#server": [
83
+ "../server"
84
+ ],
85
+ "#server/*": [
86
+ "../server/*"
87
+ ],
88
+ "#app": [
89
+ "../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app"
90
+ ],
91
+ "#app/*": [
92
+ "../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/*"
93
+ ],
94
+ "vue-demi": [
95
+ "../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi"
96
+ ],
97
+ "#image": [
98
+ "../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime"
99
+ ],
100
+ "#image/*": [
101
+ "../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/*"
102
+ ],
103
+ "#vue-router": [
104
+ "../node_modules/.pnpm/vue-router@4.6.4_vue@3.5.30_typescript@5.9.3_/node_modules/vue-router"
105
+ ],
106
+ "#unhead/composables": [
107
+ "../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/composables"
108
+ ],
109
+ "#imports": [
110
+ "./imports"
111
+ ],
112
+ "#app-manifest": [
113
+ "./manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9"
114
+ ],
115
+ "#build": [
116
+ "."
117
+ ],
118
+ "#build/*": [
119
+ "./*"
120
+ ]
121
+ },
122
+ "esModuleInterop": true,
123
+ "skipLibCheck": true,
124
+ "target": "ESNext",
125
+ "allowJs": true,
126
+ "resolveJsonModule": true,
127
+ "moduleDetection": "force",
128
+ "isolatedModules": true,
129
+ "verbatimModuleSyntax": true,
130
+ "allowArbitraryExtensions": true,
131
+ "strict": false,
132
+ "noUncheckedIndexedAccess": true,
133
+ "forceConsistentCasingInFileNames": true,
134
+ "noImplicitOverride": true,
135
+ "module": "preserve",
136
+ "noEmit": true,
137
+ "types": [],
138
+ "moduleResolution": "Bundler",
139
+ "useDefineForClassFields": true,
140
+ "noImplicitThis": true,
141
+ "allowSyntheticDefaultImports": true
142
+ },
143
+ "include": [
144
+ "./nuxt.shared.d.ts",
145
+ "../shared/**/*",
146
+ "../modules/*/shared/**/*",
147
+ "../layers/*/shared/**/*",
148
+ "../*.d.ts",
149
+ "../layers/*/*.d.ts"
150
+ ],
151
+ "exclude": []
152
+ }
@@ -0,0 +1,35 @@
1
+
2
+ import type { AppConfigInput, CustomAppConfig } from 'nuxt/schema'
3
+ import type { Defu } from 'defu'
4
+
5
+
6
+ declare global {
7
+ const defineAppConfig: <C extends AppConfigInput> (config: C) => C
8
+ }
9
+
10
+ declare const inlineConfig = {
11
+ "nuxt": {}
12
+ }
13
+ type ResolvedAppConfig = Defu<typeof inlineConfig, []>
14
+ type IsAny<T> = 0 extends 1 & T ? true : false
15
+
16
+ type MergedAppConfig<Resolved extends Record<string, unknown>, Custom extends Record<string, unknown>> = {
17
+ [K in keyof (Resolved & Custom)]: K extends keyof Custom
18
+ ? unknown extends Custom[K]
19
+ ? Resolved[K]
20
+ : IsAny<Custom[K]> extends true
21
+ ? Resolved[K]
22
+ : Custom[K] extends Record<string, any>
23
+ ? Resolved[K] extends Record<string, any>
24
+ ? MergedAppConfig<Resolved[K], Custom[K]>
25
+ : Exclude<Custom[K], undefined>
26
+ : Exclude<Custom[K], undefined>
27
+ : Resolved[K]
28
+ }
29
+
30
+ declare module 'nuxt/schema' {
31
+ interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
32
+ }
33
+ declare module '@nuxt/schema' {
34
+ interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
35
+ }
@@ -0,0 +1,24 @@
1
+ declare module "#build/app-component.mjs";
2
+ declare module "#build/nitro.client.mjs";
3
+ declare module "#build/plugins.client.mjs";
4
+ declare module "#build/css.mjs";
5
+ declare module "#build/fetch.mjs";
6
+ declare module "#build/error-component.mjs";
7
+ declare module "#build/global-polyfills.mjs";
8
+ declare module "#build/layouts.mjs";
9
+ declare module "#build/middleware.mjs";
10
+ declare module "#build/nuxt.config.mjs";
11
+ declare module "#build/paths.mjs";
12
+ declare module "#build/root-component.mjs";
13
+ declare module "#build/plugins.server.mjs";
14
+ declare module "#build/test-component-wrapper.mjs";
15
+ declare module "#build/image-options.mjs";
16
+ declare module "#build/pages.mjs";
17
+ declare module "#build/router.options.mjs";
18
+ declare module "#build/unhead-options.mjs";
19
+ declare module "#build/unhead.config.mjs";
20
+ declare module "#build/components.plugin.mjs";
21
+ declare module "#build/component-names.mjs";
22
+ declare module "#build/components.islands.mjs";
23
+ declare module "#build/component-chunk.mjs";
24
+ declare module "#build/route-rules.mjs";
@@ -0,0 +1 @@
1
+ import "vite/client";
@@ -0,0 +1,69 @@
1
+
2
+ import type { DefineComponent, SlotsType } from 'vue'
3
+ type IslandComponent<T> = DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>> & T
4
+
5
+ type HydrationStrategies = {
6
+ hydrateOnVisible?: IntersectionObserverInit | true
7
+ hydrateOnIdle?: number | true
8
+ hydrateOnInteraction?: keyof HTMLElementEventMap | Array<keyof HTMLElementEventMap> | true
9
+ hydrateOnMediaQuery?: string
10
+ hydrateAfter?: number
11
+ hydrateWhen?: boolean
12
+ hydrateNever?: true
13
+ }
14
+ type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
15
+
16
+ interface _GlobalComponents {
17
+ NuxtWelcome: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/welcome.vue")['default']
18
+ NuxtLayout: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
19
+ NuxtErrorBoundary: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
20
+ ClientOnly: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/client-only")['default']
21
+ DevOnly: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/dev-only")['default']
22
+ ServerPlaceholder: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/server-placeholder")['default']
23
+ NuxtLink: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link")['default']
24
+ NuxtLoadingIndicator: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
25
+ NuxtTime: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
26
+ NuxtRouteAnnouncer: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
27
+ NuxtImg: typeof import("../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtImg.vue")['default']
28
+ NuxtPicture: typeof import("../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtPicture.vue")['default']
29
+ NuxtPage: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
30
+ NoScript: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['NoScript']
31
+ Link: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Link']
32
+ Base: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Base']
33
+ Title: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Title']
34
+ Meta: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Meta']
35
+ Style: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Style']
36
+ Head: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Head']
37
+ Html: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Html']
38
+ Body: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Body']
39
+ NuxtIsland: typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-island")['default']
40
+ LazyNuxtWelcome: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
41
+ LazyNuxtLayout: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
42
+ LazyNuxtErrorBoundary: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
43
+ LazyClientOnly: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/client-only")['default']>
44
+ LazyDevOnly: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/dev-only")['default']>
45
+ LazyServerPlaceholder: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
46
+ LazyNuxtLink: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
47
+ LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
48
+ LazyNuxtTime: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
49
+ LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
50
+ LazyNuxtImg: LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtImg.vue")['default']>
51
+ LazyNuxtPicture: LazyComponent<typeof import("../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtPicture.vue")['default']>
52
+ LazyNuxtPage: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
53
+ LazyNoScript: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
54
+ LazyLink: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Link']>
55
+ LazyBase: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Base']>
56
+ LazyTitle: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Title']>
57
+ LazyMeta: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Meta']>
58
+ LazyStyle: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Style']>
59
+ LazyHead: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Head']>
60
+ LazyHtml: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Html']>
61
+ LazyBody: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Body']>
62
+ LazyNuxtIsland: LazyComponent<typeof import("../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
63
+ }
64
+
65
+ declare module 'vue' {
66
+ export interface GlobalComponents extends _GlobalComponents { }
67
+ }
68
+
69
+ export {}