@veryfront/ext-content-mdx 0.1.997 → 0.1.998
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/esm/deno.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ declare namespace _default {
|
|
|
20
20
|
"./chat/ag-ui": string;
|
|
21
21
|
"./chat/protocol": string;
|
|
22
22
|
"./chat/types": string;
|
|
23
|
+
"./chat/uploads": string;
|
|
23
24
|
"./markdown": string;
|
|
24
25
|
"./mdx": string;
|
|
25
26
|
"./agent": string;
|
|
@@ -89,6 +90,7 @@ declare namespace _default {
|
|
|
89
90
|
"veryfront/fonts": string;
|
|
90
91
|
"veryfront/chat": string;
|
|
91
92
|
"veryfront/chat/types": string;
|
|
93
|
+
"veryfront/chat/uploads": string;
|
|
92
94
|
"veryfront/markdown": string;
|
|
93
95
|
"veryfront/mdx": string;
|
|
94
96
|
"veryfront/fs": string;
|
|
@@ -188,6 +190,7 @@ declare namespace _default {
|
|
|
188
190
|
"#veryfront/chat/protocol": string;
|
|
189
191
|
"#veryfront/chat/provider-errors": string;
|
|
190
192
|
"#veryfront/chat/stream-watchdog": string;
|
|
193
|
+
"#veryfront/chat/uploads": string;
|
|
191
194
|
"#veryfront/build": string;
|
|
192
195
|
"#veryfront/cache": string;
|
|
193
196
|
"#veryfront/config": string;
|
|
@@ -347,6 +350,9 @@ declare namespace _default {
|
|
|
347
350
|
"coverage:html": string;
|
|
348
351
|
bench: string;
|
|
349
352
|
clean: string;
|
|
353
|
+
storybook: string;
|
|
354
|
+
"build:storybook": string;
|
|
355
|
+
"storybook:check": string;
|
|
350
356
|
lint: string;
|
|
351
357
|
fmt: string;
|
|
352
358
|
"fmt:check": string;
|
|
@@ -368,6 +374,7 @@ declare namespace _default {
|
|
|
368
374
|
"lint:ban-deep-imports": string;
|
|
369
375
|
"lint:imports": string;
|
|
370
376
|
"lint:ban-internal-root-imports": string;
|
|
377
|
+
"lint:chat-composability": string;
|
|
371
378
|
"lint:style": string;
|
|
372
379
|
"lint:cli-boundary": string;
|
|
373
380
|
"validate:architecture": string;
|
package/esm/deno.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.998",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"nodeModulesDir": "auto",
|
|
6
6
|
"minimumDependencyAge": {
|
|
@@ -59,6 +59,7 @@ export default {
|
|
|
59
59
|
"dist/",
|
|
60
60
|
"coverage/",
|
|
61
61
|
"scripts/",
|
|
62
|
+
"storybook/",
|
|
62
63
|
"examples/",
|
|
63
64
|
"data/",
|
|
64
65
|
".deno_cache/",
|
|
@@ -76,6 +77,7 @@ export default {
|
|
|
76
77
|
"./chat/ag-ui": "./src/chat/ag-ui.ts",
|
|
77
78
|
"./chat/protocol": "./src/chat/protocol.ts",
|
|
78
79
|
"./chat/types": "./src/chat/types.ts",
|
|
80
|
+
"./chat/uploads": "./src/chat/upload-handler.ts",
|
|
79
81
|
"./markdown": "./src/markdown/index.ts",
|
|
80
82
|
"./mdx": "./src/mdx/index.ts",
|
|
81
83
|
"./agent": "./src/agent/index.ts",
|
|
@@ -145,6 +147,7 @@ export default {
|
|
|
145
147
|
"veryfront/fonts": "./src/react/fonts/index.ts",
|
|
146
148
|
"veryfront/chat": "./src/chat/index.ts",
|
|
147
149
|
"veryfront/chat/types": "./src/chat/types.ts",
|
|
150
|
+
"veryfront/chat/uploads": "./src/chat/upload-handler.ts",
|
|
148
151
|
"veryfront/markdown": "./src/markdown/index.ts",
|
|
149
152
|
"veryfront/mdx": "./src/mdx/index.ts",
|
|
150
153
|
"veryfront/fs": "./src/fs/index.ts",
|
|
@@ -244,6 +247,7 @@ export default {
|
|
|
244
247
|
"#veryfront/chat/protocol": "./src/chat/protocol.ts",
|
|
245
248
|
"#veryfront/chat/provider-errors": "./src/chat/provider-errors.ts",
|
|
246
249
|
"#veryfront/chat/stream-watchdog": "./src/chat/stream-watchdog.ts",
|
|
250
|
+
"#veryfront/chat/uploads": "./src/chat/upload-handler.ts",
|
|
247
251
|
"#veryfront/build": "./src/build/index.ts",
|
|
248
252
|
"#veryfront/cache": "./src/cache/index.ts",
|
|
249
253
|
"#veryfront/config": "./src/config/index.ts",
|
|
@@ -409,12 +413,15 @@ export default {
|
|
|
409
413
|
"coverage:html": "deno coverage coverage --include=src/ --exclude=tests '--exclude=src/**/*_test.ts' '--exclude=src/**/*_test.tsx' '--exclude=src/**/*.test.ts' '--exclude=src/**/*.test.tsx' --html",
|
|
410
414
|
"bench": "VF_DISABLE_LRU_INTERVAL=1 NODE_ENV=production LOG_FORMAT=text deno bench --no-check --allow-all --unstable-worker-options --unstable-net $(find src -name '*.bench.ts')",
|
|
411
415
|
"clean": "rm -rf .cache/",
|
|
416
|
+
"storybook": "npm --prefix storybook run storybook",
|
|
417
|
+
"build:storybook": "npm --prefix storybook run build-storybook",
|
|
418
|
+
"storybook:check": "deno test --no-lock --config=scripts/test.deno.json --no-check --allow-read scripts/storybook/storybook-workbench.test.ts",
|
|
412
419
|
"lint": "DENO_NO_PACKAGE_JSON=1 deno lint src/ cli/ react/ && deno lint --config=scripts/test.deno.json scripts/test/ scripts/build/npm-package-metadata.test.ts",
|
|
413
420
|
"fmt": "deno fmt src/ cli/ react/ && deno fmt --config=scripts/test.deno.json scripts/test/",
|
|
414
421
|
"fmt:check": "deno fmt --check src/ cli/ react/ && deno fmt --check --config=scripts/test.deno.json scripts/test/",
|
|
415
422
|
"typecheck": "deno task generate:manifests:check && deno check src/index.ts cli/main.ts src/server/index.ts src/routing/api/index.ts src/rendering/index.ts src/platform/index.ts src/platform/adapters/index.ts src/build/index.ts src/build/production-build/index.ts src/transforms/index.ts src/config/index.ts src/utils/index.ts src/data/index.ts src/security/index.ts src/middleware/index.ts src/server/handlers/dev/index.ts src/server/handlers/request/api/index.ts src/rendering/cache/index.ts src/rendering/cache/stores/index.ts src/rendering/rsc/actions/index.ts src/html/index.ts src/modules/index.ts src/proxy/main.ts src/chat/index.ts src/markdown/index.ts src/mdx/index.ts src/fs/index.ts src/oauth/index.ts src/agent/index.ts src/agent/service/route-export.check.ts src/eval/index.ts src/tool/index.ts src/workflow/index.ts src/work/index.ts src/prompt/index.ts src/resource/index.ts src/runs/index.ts src/mcp/index.ts src/provider/index.ts",
|
|
416
|
-
"verify": "deno task generate:manifests:check && deno task fmt:check && deno task lint && deno task lint:style && deno task lint:cli-boundary && deno task lint:wildcard-exports && deno task lint:barrel-jsdoc && deno task lint:ban-test-only && deno task lint:sanitizer-baseline && deno task lint:skipped-tests && deno task lint:ban-zod && deno task lint:core-deps && deno task lint:dependency-boundaries && deno task lint:extension-contracts && deno task lint:extension-capabilities && deno task docs:validate && deno task typecheck && deno task test && deno task test:e2e:binary",
|
|
417
|
-
"verify:quick": "deno task generate:manifests:check && deno task fmt:check && deno task lint && deno task lint:style && deno task lint:cli-boundary && deno task lint:wildcard-exports && deno task lint:barrel-jsdoc && deno task lint:ban-test-only && deno task lint:sanitizer-baseline && deno task lint:skipped-tests && deno task lint:ban-zod && deno task lint:core-deps && deno task lint:dependency-boundaries && deno task lint:extension-contracts && deno task lint:extension-capabilities && deno task docs:validate && deno task typecheck",
|
|
423
|
+
"verify": "deno task generate:manifests:check && deno task fmt:check && deno task lint && deno task lint:style && deno task lint:chat-composability && deno task lint:cli-boundary && deno task lint:wildcard-exports && deno task lint:barrel-jsdoc && deno task lint:ban-test-only && deno task lint:sanitizer-baseline && deno task lint:skipped-tests && deno task lint:ban-zod && deno task lint:core-deps && deno task lint:dependency-boundaries && deno task lint:extension-contracts && deno task lint:extension-capabilities && deno task docs:validate && deno task typecheck && deno task test && deno task test:e2e:binary",
|
|
424
|
+
"verify:quick": "deno task generate:manifests:check && deno task fmt:check && deno task lint && deno task lint:style && deno task lint:chat-composability && deno task lint:cli-boundary && deno task lint:wildcard-exports && deno task lint:barrel-jsdoc && deno task lint:ban-test-only && deno task lint:sanitizer-baseline && deno task lint:skipped-tests && deno task lint:ban-zod && deno task lint:core-deps && deno task lint:dependency-boundaries && deno task lint:extension-contracts && deno task lint:extension-capabilities && deno task docs:validate && deno task typecheck",
|
|
418
425
|
"docs": "deno run --allow-read --allow-write --allow-run --allow-env scripts/docs/generate-api-reference.ts",
|
|
419
426
|
"docs:coverage": "deno run --allow-read scripts/docs/docs-coverage.ts",
|
|
420
427
|
"docs:copy": "rm -rf ../../docs/docs/code/api-reference && cp -r docs/api-reference/ ../../docs/docs/code/api-reference/",
|
|
@@ -430,6 +437,7 @@ export default {
|
|
|
430
437
|
"lint:ban-deep-imports": "deno run --allow-read scripts/lint/ban-deep-imports.ts",
|
|
431
438
|
"lint:imports": "deno run --allow-read scripts/lint/no-cross-boundary-relative-imports.ts",
|
|
432
439
|
"lint:ban-internal-root-imports": "deno run --allow-read scripts/lint/ban-internal-root-imports.ts",
|
|
440
|
+
"lint:chat-composability": "deno run --allow-read scripts/lint/audit-chat-composability.ts",
|
|
433
441
|
"lint:style": "deno run --allow-read scripts/lint/enforce-style-conventions.ts",
|
|
434
442
|
"lint:cli-boundary": "deno run --allow-read scripts/lint/enforce-cli-boundary.ts",
|
|
435
443
|
"validate:architecture": "deno run --allow-read scripts/lint/validate-architecture.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veryfront/ext-content-mdx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.998",
|
|
4
4
|
"description": "Veryfront first-party extension package for ext-content-mdx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"veryfront",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"vfile": "6.0.3"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"veryfront": "^0.1.
|
|
70
|
+
"veryfront": "^0.1.998"
|
|
71
71
|
},
|
|
72
72
|
"type": "module",
|
|
73
73
|
"types": "./esm/extensions/ext-content-mdx/src/index.d.ts",
|