veryfront 0.0.90 → 0.0.92

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 (38) hide show
  1. package/README.md +0 -9
  2. package/esm/_dnt.shims.d.ts +14 -14
  3. package/esm/_dnt.shims.d.ts.map +1 -1
  4. package/esm/deno.js +1 -1
  5. package/esm/src/cli/mcp/advanced-tools.d.ts +2 -2
  6. package/esm/src/cli/templates/manifest.d.ts +449 -449
  7. package/esm/src/cli/templates/manifest.js +480 -480
  8. package/esm/src/html/styles-builder/tailwind-compiler.d.ts.map +1 -1
  9. package/esm/src/html/styles-builder/tailwind-compiler.js +27 -4
  10. package/esm/src/modules/import-map/default-import-map.d.ts.map +1 -1
  11. package/esm/src/modules/import-map/default-import-map.js +9 -4
  12. package/esm/src/platform/compat/path-helper.d.ts +7 -7
  13. package/esm/src/platform/compat/path-helper.d.ts.map +1 -1
  14. package/esm/src/react/components/ai/agent-card.d.ts +1 -1
  15. package/esm/src/react/components/ai/agent-card.d.ts.map +1 -1
  16. package/esm/src/react/components/ai/chat/composition/api.d.ts +4 -5
  17. package/esm/src/react/components/ai/chat/composition/api.d.ts.map +1 -1
  18. package/esm/src/react/components/ai/chat/index.d.ts +2 -7
  19. package/esm/src/react/components/ai/chat/index.d.ts.map +1 -1
  20. package/esm/src/react/components/ai/message.d.ts +2 -2
  21. package/esm/src/react/components/ai/message.d.ts.map +1 -1
  22. package/esm/src/react/primitives/agent-primitives.d.ts +3 -3
  23. package/esm/src/react/primitives/agent-primitives.d.ts.map +1 -1
  24. package/esm/src/react/primitives/chat-container.d.ts +1 -1
  25. package/esm/src/react/primitives/chat-container.d.ts.map +1 -1
  26. package/esm/src/react/primitives/input-box.d.ts +3 -3
  27. package/esm/src/react/primitives/input-box.d.ts.map +1 -1
  28. package/esm/src/react/primitives/message-list.d.ts +4 -4
  29. package/esm/src/react/primitives/message-list.d.ts.map +1 -1
  30. package/esm/src/react/primitives/tool-primitives.d.ts +3 -3
  31. package/esm/src/react/primitives/tool-primitives.d.ts.map +1 -1
  32. package/esm/src/rendering/ssr-globals/context.d.ts +1 -6
  33. package/esm/src/rendering/ssr-globals/context.d.ts.map +1 -1
  34. package/package.json +2 -2
  35. package/src/deno.js +1 -1
  36. package/src/src/cli/templates/manifest.js +480 -480
  37. package/src/src/html/styles-builder/tailwind-compiler.ts +28 -5
  38. package/src/src/modules/import-map/default-import-map.ts +11 -4
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
@@ -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: typeof Deno;
12
- Blob: typeof Blob;
13
- crypto: import("@deno/shim-crypto").Crypto;
14
- setInterval: typeof setInterval;
15
- setTimeout: typeof setTimeout;
16
- fetch: typeof fetch;
17
- File: typeof File;
18
- FormData: typeof FormData;
19
- Headers: typeof Headers;
20
- Request: typeof Request;
21
- Response: typeof Response;
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
@@ -1 +1 @@
1
- {"version":3,"file":"_dnt.shims.d.ts","sourceRoot":"","sources":["../src/_dnt.shims.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,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;AACrvB,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC3E,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"}
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
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "nodeModulesDir": "auto",
5
5
  "exclude": [
6
6
  "npm/",
@@ -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 {