veryfront 0.0.89 → 0.0.91
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 +0 -9
- package/esm/_dnt.shims.d.ts +14 -14
- package/esm/_dnt.shims.d.ts.map +1 -1
- package/esm/deno.js +1 -1
- package/esm/src/cli/mcp/advanced-tools.d.ts +2 -2
- package/esm/src/cli/templates/manifest.d.ts +449 -449
- package/esm/src/cli/templates/manifest.js +480 -480
- package/esm/src/html/styles-builder/tailwind-compiler.d.ts.map +1 -1
- package/esm/src/html/styles-builder/tailwind-compiler.js +26 -4
- package/esm/src/modules/import-map/default-import-map.d.ts.map +1 -1
- package/esm/src/modules/import-map/default-import-map.js +9 -4
- package/esm/src/platform/compat/path-helper.d.ts +7 -7
- package/esm/src/platform/compat/path-helper.d.ts.map +1 -1
- package/esm/src/platform/compat/process.js +1 -1
- package/esm/src/react/components/ai/agent-card.d.ts +1 -1
- package/esm/src/react/components/ai/agent-card.d.ts.map +1 -1
- package/esm/src/react/components/ai/chat/composition/api.d.ts +4 -5
- package/esm/src/react/components/ai/chat/composition/api.d.ts.map +1 -1
- package/esm/src/react/components/ai/chat/index.d.ts +2 -7
- package/esm/src/react/components/ai/chat/index.d.ts.map +1 -1
- package/esm/src/react/components/ai/message.d.ts +2 -2
- package/esm/src/react/components/ai/message.d.ts.map +1 -1
- package/esm/src/react/primitives/agent-primitives.d.ts +3 -3
- package/esm/src/react/primitives/agent-primitives.d.ts.map +1 -1
- package/esm/src/react/primitives/chat-container.d.ts +1 -1
- package/esm/src/react/primitives/chat-container.d.ts.map +1 -1
- package/esm/src/react/primitives/input-box.d.ts +3 -3
- package/esm/src/react/primitives/input-box.d.ts.map +1 -1
- package/esm/src/react/primitives/message-list.d.ts +4 -4
- package/esm/src/react/primitives/message-list.d.ts.map +1 -1
- package/esm/src/react/primitives/tool-primitives.d.ts +3 -3
- package/esm/src/react/primitives/tool-primitives.d.ts.map +1 -1
- package/esm/src/rendering/ssr-globals/context.d.ts +1 -6
- package/esm/src/rendering/ssr-globals/context.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/deno.js +1 -1
- package/src/src/cli/templates/manifest.js +480 -480
- package/src/src/html/styles-builder/tailwind-compiler.ts +27 -5
- package/src/src/modules/import-map/default-import-map.ts +11 -4
- package/src/src/platform/compat/process.ts +1 -1
package/README.md
CHANGED
|
@@ -23,12 +23,3 @@ npx veryfront
|
|
|
23
23
|
One command. Zero config. Just build.
|
|
24
24
|
|
|
25
25
|
[Docs](https://veryfront.com/docs/framework) · [Discord](https://discord.gg/veryfront) · [X](https://x.com/veryfrontdev) · MIT
|
|
26
|
-
|
|
27
|
-
## Releasing
|
|
28
|
-
|
|
29
|
-
Create a new release with `gh release create vX.X.X`. The publish workflow runs automatically and takes ~4-5 minutes:
|
|
30
|
-
|
|
31
|
-
1. Builds native binaries for 5 platforms (macOS arm64/x64, Linux x64/arm64, Windows x64)
|
|
32
|
-
2. Publishes to npm with provenance
|
|
33
|
-
3. Creates GitHub releases in both repos
|
|
34
|
-
4. Updates Homebrew formula
|
package/esm/_dnt.shims.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { Deno } from "@deno/shim-deno";
|
|
2
1
|
export { Deno } from "@deno/shim-deno";
|
|
3
2
|
import { Blob } from "buffer";
|
|
4
3
|
export { Blob } from "buffer";
|
|
5
4
|
export { crypto, type Crypto, type SubtleCrypto, type AlgorithmIdentifier, type Algorithm, type RsaOaepParams, type BufferSource, type AesCtrParams, type AesCbcParams, type AesGcmParams, type CryptoKey, type KeyAlgorithm, type KeyType, type KeyUsage, type EcdhKeyDeriveParams, type HkdfParams, type HashAlgorithmIdentifier, type Pbkdf2Params, type AesDerivedKeyParams, type HmacImportParams, type JsonWebKey, type RsaOtherPrimesInfo, type KeyFormat, type RsaHashedKeyGenParams, type RsaKeyGenParams, type BigInteger, type EcKeyGenParams, type NamedCurve, type CryptoKeyPair, type AesKeyGenParams, type HmacKeyGenParams, type RsaHashedImportParams, type EcKeyImportParams, type AesKeyAlgorithm, type RsaPssParams, type EcdsaParams } from "@deno/shim-crypto";
|
|
6
|
-
import { setInterval, setTimeout } from "@deno/shim-timers";
|
|
7
5
|
export { setInterval, setTimeout } from "@deno/shim-timers";
|
|
8
|
-
import { fetch, File, FormData, Headers, Request, Response } from "undici";
|
|
9
6
|
export { fetch, File, FormData, Headers, Request, Response, type BodyInit, type HeadersInit, type ReferrerPolicy, type RequestInit, type RequestCache, type RequestMode, type RequestRedirect, type ResponseInit } from "undici";
|
|
10
7
|
export declare const dntGlobalThis: Omit<typeof globalThis, "fetch" | "setInterval" | "setTimeout" | "Blob" | "File" | "FormData" | "Headers" | "Request" | "Response" | "crypto" | "Deno"> & {
|
|
11
|
-
Deno:
|
|
12
|
-
Blob:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
8
|
+
Deno: any;
|
|
9
|
+
Blob: {
|
|
10
|
+
new (blobParts?: import("node:buffer").BlobPart[], options?: import("node:buffer").BlobPropertyBag): Blob;
|
|
11
|
+
prototype: Blob;
|
|
12
|
+
};
|
|
13
|
+
crypto: any;
|
|
14
|
+
setInterval: any;
|
|
15
|
+
setTimeout: any;
|
|
16
|
+
fetch: any;
|
|
17
|
+
File: any;
|
|
18
|
+
FormData: any;
|
|
19
|
+
Headers: any;
|
|
20
|
+
Request: any;
|
|
21
|
+
Response: any;
|
|
22
22
|
};
|
|
23
23
|
//# sourceMappingURL=_dnt.shims.d.ts.map
|
package/esm/_dnt.shims.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_dnt.shims.d.ts","sourceRoot":"","sources":["../src/_dnt.shims.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"_dnt.shims.d.ts","sourceRoot":"","sources":["../src/_dnt.shims.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,OAAO,EAAE,MAAM,EAAE,KAAK,MAAM,EAAE,KAAK,YAAY,EAAE,KAAK,mBAAmB,EAAE,KAAK,SAAS,EAAE,KAAK,aAAa,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,KAAK,YAAY,EAAE,KAAK,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,mBAAmB,EAAE,KAAK,UAAU,EAAE,KAAK,uBAAuB,EAAE,KAAK,YAAY,EAAE,KAAK,mBAAmB,EAAE,KAAK,gBAAgB,EAAE,KAAK,UAAU,EAAE,KAAK,kBAAkB,EAAE,KAAK,SAAS,EAAE,KAAK,qBAAqB,EAAE,KAAK,eAAe,EAAE,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,KAAK,UAAU,EAAE,KAAK,aAAa,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,KAAK,iBAAiB,EAAE,KAAK,eAAe,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAErvB,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE5D,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,QAAQ,EAAE,KAAK,WAAW,EAAE,KAAK,cAAc,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,eAAe,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAejO,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;CAA2C,CAAC"}
|
package/esm/deno.js
CHANGED
|
@@ -303,13 +303,13 @@ declare const createProjectInput: z.ZodObject<{
|
|
|
303
303
|
}, "strip", z.ZodTypeAny, {
|
|
304
304
|
name: string;
|
|
305
305
|
template: "app" | "docs" | "ai" | "blog" | "minimal";
|
|
306
|
-
directory?: string | undefined;
|
|
307
306
|
integrations?: string[] | undefined;
|
|
307
|
+
directory?: string | undefined;
|
|
308
308
|
}, {
|
|
309
309
|
name: string;
|
|
310
310
|
template?: "app" | "docs" | "ai" | "blog" | "minimal" | undefined;
|
|
311
|
-
directory?: string | undefined;
|
|
312
311
|
integrations?: string[] | undefined;
|
|
312
|
+
directory?: string | undefined;
|
|
313
313
|
}>;
|
|
314
314
|
type CreateProjectInput = z.infer<typeof createProjectInput>;
|
|
315
315
|
interface CreateProjectResult {
|