veryfront 0.0.73 → 0.0.75
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/README.md +3 -0
- package/dist/ai/components.js +3 -3
- package/dist/ai/components.js.map +2 -2
- package/dist/ai/dev.js +121 -18
- package/dist/ai/dev.js.map +2 -2
- package/dist/ai/index.js +733 -232
- package/dist/ai/index.js.map +4 -4
- package/dist/ai/production.js +121 -18
- package/dist/ai/production.js.map +2 -2
- package/dist/ai/react.js +8 -7
- package/dist/ai/react.js.map +2 -2
- package/dist/ai/workflow.js +439 -63
- package/dist/ai/workflow.js.map +4 -4
- package/dist/components.js +3959 -241
- package/dist/components.js.map +4 -4
- package/dist/config.js +379 -40
- package/dist/config.js.map +3 -3
- package/dist/context.d.ts +44 -0
- package/dist/context.js +52 -0
- package/dist/context.js.map +7 -0
- package/dist/data.js +160 -37
- package/dist/data.js.map +3 -3
- package/dist/fonts.d.ts +24 -0
- package/dist/fonts.js +68 -0
- package/dist/fonts.js.map +7 -0
- package/dist/head.d.ts +21 -0
- package/dist/head.js +34 -0
- package/dist/head.js.map +7 -0
- package/dist/index.js +4080 -315
- package/dist/index.js.map +4 -4
- package/dist/oauth/handlers.js.map +1 -1
- package/dist/oauth/index.js.map +1 -1
- package/dist/oauth/providers.js.map +1 -1
- package/dist/router.d.ts +69 -0
- package/dist/router.js +57 -0
- package/dist/router.js.map +7 -0
- package/package.json +19 -2
- package/dist/cli.js +0 -107694
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Veryfront
|
|
2
2
|
|
|
3
|
+
[](https://github.com/veryfront/veryfront-renderer/actions/workflows/ci.yml)
|
|
4
|
+
|
|
3
5
|
Veryfront is a **zero-config React framework** for building **agentic applications**. Automatically discovers agents, tools, and routes through file-based conventions.
|
|
4
6
|
|
|
5
7
|
|
|
@@ -140,6 +142,7 @@ deno task dev --mcp # Port 3001 by default
|
|
|
140
142
|
- **Zero config** - Auto-discovery from file structure
|
|
141
143
|
- **Multi-runtime** - Deno, Node.js, Bun, Cloudflare Workers
|
|
142
144
|
- **Full-stack React** - SSR, SSG, ISR, JIT rendering
|
|
145
|
+
- **Remote imports** - Use `https://esm.sh/pkg` directly, no node_modules needed
|
|
143
146
|
- **MCP built-in** - Model Context Protocol server
|
|
144
147
|
- **Production-ready** - Rate limiting, caching, cost tracking, security
|
|
145
148
|
|
package/dist/ai/components.js
CHANGED
|
@@ -556,9 +556,9 @@ function getErrorMessage(error) {
|
|
|
556
556
|
import * as React7 from "react";
|
|
557
557
|
import { Fragment as Fragment2, jsx as jsx6, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
558
558
|
var isBrowser = typeof window !== "undefined" && typeof document !== "undefined";
|
|
559
|
-
var ESM_REACT_MARKDOWN = "https://esm.sh/react-markdown@9?external=react";
|
|
560
|
-
var ESM_REMARK_GFM = "https://esm.sh/remark-gfm@4";
|
|
561
|
-
var ESM_REHYPE_HIGHLIGHT = "https://esm.sh/rehype-highlight@7";
|
|
559
|
+
var ESM_REACT_MARKDOWN = "https://esm.sh/react-markdown@9?external=react&target=es2022";
|
|
560
|
+
var ESM_REMARK_GFM = "https://esm.sh/remark-gfm@4?target=es2022";
|
|
561
|
+
var ESM_REHYPE_HIGHLIGHT = "https://esm.sh/rehype-highlight@7?target=es2022";
|
|
562
562
|
var ESM_MERMAID = "https://esm.sh/mermaid@11";
|
|
563
563
|
var ReactMarkdown = null;
|
|
564
564
|
var remarkGfm = null;
|