veryfront 0.0.62 → 0.0.64
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/dist/ai/index.js +28 -28
- package/dist/ai/index.js.map +2 -2
- package/dist/ai/workflow.js +26 -24
- package/dist/ai/workflow.js.map +2 -2
- package/dist/cli.js +228 -2989
- package/dist/components.js +407 -224
- package/dist/components.js.map +4 -4
- package/dist/config.js +26 -24
- package/dist/config.js.map +2 -2
- package/dist/data.js +26 -24
- package/dist/data.js.map +2 -2
- package/dist/index.js +415 -229
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/ai/workflow.js
CHANGED
|
@@ -677,14 +677,14 @@ var LRU_DEFAULT_MAX_SIZE_BYTES = 50 * 1024 * 1024;
|
|
|
677
677
|
// deno.json
|
|
678
678
|
var deno_default = {
|
|
679
679
|
name: "veryfront",
|
|
680
|
-
version: "0.0.
|
|
680
|
+
version: "0.0.64",
|
|
681
|
+
nodeModulesDir: "auto",
|
|
681
682
|
exclude: [
|
|
682
683
|
"npm/",
|
|
683
684
|
"dist/",
|
|
684
685
|
"coverage/",
|
|
685
686
|
"scripts/",
|
|
686
687
|
"examples/",
|
|
687
|
-
"tests/",
|
|
688
688
|
"src/cli/templates/files/",
|
|
689
689
|
"src/cli/templates/integrations/"
|
|
690
690
|
],
|
|
@@ -768,34 +768,36 @@ var deno_default = {
|
|
|
768
768
|
"react-dom/client": "https://esm.sh/react-dom@18.3.1/client",
|
|
769
769
|
"react/jsx-runtime": "https://esm.sh/react@18.3.1/jsx-runtime",
|
|
770
770
|
"react/jsx-dev-runtime": "https://esm.sh/react@18.3.1/jsx-dev-runtime",
|
|
771
|
-
"@mdx-js/mdx": "
|
|
772
|
-
"@mdx-js/react": "
|
|
773
|
-
"unist-util-visit": "
|
|
774
|
-
"mdast-util-to-string": "
|
|
775
|
-
"github-slugger": "
|
|
776
|
-
"remark-gfm": "
|
|
777
|
-
"remark-frontmatter": "
|
|
778
|
-
"rehype-highlight": "
|
|
779
|
-
"rehype-slug": "
|
|
771
|
+
"@mdx-js/mdx": "npm:@mdx-js/mdx@3.0.0",
|
|
772
|
+
"@mdx-js/react": "npm:@mdx-js/react@3.0.0",
|
|
773
|
+
"unist-util-visit": "npm:unist-util-visit@5.0.0",
|
|
774
|
+
"mdast-util-to-string": "npm:mdast-util-to-string@4.0.0",
|
|
775
|
+
"github-slugger": "npm:github-slugger@2.0.0",
|
|
776
|
+
"remark-gfm": "npm:remark-gfm@4.0.1",
|
|
777
|
+
"remark-frontmatter": "npm:remark-frontmatter@5.0.0",
|
|
778
|
+
"rehype-highlight": "npm:rehype-highlight@7.0.2",
|
|
779
|
+
"rehype-slug": "npm:rehype-slug@6.0.0",
|
|
780
780
|
esbuild: "https://deno.land/x/esbuild@v0.20.1/wasm.js",
|
|
781
781
|
"esbuild/mod.js": "https://deno.land/x/esbuild@v0.20.1/mod.js",
|
|
782
|
-
"es-module-lexer": "
|
|
783
|
-
zod: "
|
|
784
|
-
"mime-types": "
|
|
785
|
-
mdast: "
|
|
786
|
-
hast: "
|
|
787
|
-
unist: "
|
|
788
|
-
unified: "
|
|
789
|
-
ai: "https://esm.sh/ai@5.0.
|
|
790
|
-
"ai/react": "https://esm.sh/@ai-sdk/react@2.0.
|
|
791
|
-
"@ai-sdk/react": "https://esm.sh/@ai-sdk/react@2.0.
|
|
792
|
-
"@ai-sdk/openai": "https://esm.sh/@ai-sdk/openai@2.0.
|
|
793
|
-
"@ai-sdk/anthropic": "https://esm.sh/@ai-sdk/anthropic@2.0.
|
|
782
|
+
"es-module-lexer": "npm:es-module-lexer@1.5.0",
|
|
783
|
+
zod: "npm:zod@3.23.8",
|
|
784
|
+
"mime-types": "npm:mime-types@2.1.35",
|
|
785
|
+
mdast: "npm:@types/mdast@4.0.3",
|
|
786
|
+
hast: "npm:@types/hast@3.0.3",
|
|
787
|
+
unist: "npm:@types/unist@3.0.2",
|
|
788
|
+
unified: "npm:unified@11.0.5",
|
|
789
|
+
ai: "https://esm.sh/ai@5.0.108?deps=react@18.3.1,react-dom@18.3.1",
|
|
790
|
+
"ai/react": "https://esm.sh/@ai-sdk/react@2.0.109?deps=react@18.3.1,react-dom@18.3.1",
|
|
791
|
+
"@ai-sdk/react": "https://esm.sh/@ai-sdk/react@2.0.109?deps=react@18.3.1,react-dom@18.3.1",
|
|
792
|
+
"@ai-sdk/openai": "https://esm.sh/@ai-sdk/openai@2.0.80",
|
|
793
|
+
"@ai-sdk/anthropic": "https://esm.sh/@ai-sdk/anthropic@2.0.54",
|
|
794
794
|
unocss: "https://esm.sh/unocss@0.59.0",
|
|
795
795
|
"@unocss/core": "https://esm.sh/@unocss/core@0.59.0",
|
|
796
796
|
"@unocss/preset-wind": "https://esm.sh/@unocss/preset-wind@0.59.0",
|
|
797
797
|
redis: "npm:redis",
|
|
798
|
-
pg: "npm:pg"
|
|
798
|
+
pg: "npm:pg",
|
|
799
|
+
"@opentelemetry/api": "npm:@opentelemetry/api@1",
|
|
800
|
+
"@opentelemetry/core": "npm:@opentelemetry/core@1"
|
|
799
801
|
},
|
|
800
802
|
compilerOptions: {
|
|
801
803
|
jsx: "react-jsx",
|