@veryfront/ext-content-mdx 0.1.1162 → 0.1.1163
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
|
@@ -51,6 +51,7 @@ declare namespace _default {
|
|
|
51
51
|
"./mcp": string;
|
|
52
52
|
"./middleware": string;
|
|
53
53
|
"./observability": string;
|
|
54
|
+
"./observability/sentry": string;
|
|
54
55
|
"./observability/otlp-setup": string;
|
|
55
56
|
"./utils": string;
|
|
56
57
|
"./oauth": string;
|
|
@@ -138,6 +139,7 @@ declare namespace _default {
|
|
|
138
139
|
"veryfront/proxy/cache": string;
|
|
139
140
|
"veryfront/transforms/mdx-cache": string;
|
|
140
141
|
"veryfront/observability/otlp-setup": string;
|
|
142
|
+
"veryfront/observability/sentry": string;
|
|
141
143
|
"veryfront/platform/esbuild-init": string;
|
|
142
144
|
"veryfront/platform/path": string;
|
|
143
145
|
"veryfront/platform/http": 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.1163",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"nodeModulesDir": "auto",
|
|
6
6
|
"minimumDependencyAge": {
|
|
@@ -52,6 +52,7 @@ export default {
|
|
|
52
52
|
"./extensions/ext-parser-babel",
|
|
53
53
|
"./extensions/ext-sandbox-shell-tools",
|
|
54
54
|
"./extensions/ext-observability-opentelemetry",
|
|
55
|
+
"./extensions/ext-observability-sentry",
|
|
55
56
|
"./extensions/ext-eval-report-mlflow",
|
|
56
57
|
"./extensions/ext-eval-report-http",
|
|
57
58
|
"./extensions/ext-content-mdx",
|
|
@@ -111,6 +112,7 @@ export default {
|
|
|
111
112
|
"./mcp": "./src/mcp/index.ts",
|
|
112
113
|
"./middleware": "./src/middleware/index.ts",
|
|
113
114
|
"./observability": "./src/observability/index.ts",
|
|
115
|
+
"./observability/sentry": "./src/observability/sentry.ts",
|
|
114
116
|
"./observability/otlp-setup": "./src/observability/tracing/otlp-setup.ts",
|
|
115
117
|
"./utils": "./src/utils/index.ts",
|
|
116
118
|
"./oauth": "./src/oauth/index.ts",
|
|
@@ -198,6 +200,7 @@ export default {
|
|
|
198
200
|
"veryfront/proxy/cache": "./src/proxy/cache/index.ts",
|
|
199
201
|
"veryfront/transforms/mdx-cache": "./src/transforms/mdx/esm-module-loader/cache/index.ts",
|
|
200
202
|
"veryfront/observability/otlp-setup": "./src/observability/tracing/otlp-setup.ts",
|
|
203
|
+
"veryfront/observability/sentry": "./src/observability/sentry.ts",
|
|
201
204
|
"veryfront/platform/esbuild-init": "./src/platform/compat/esbuild-init.ts",
|
|
202
205
|
"veryfront/platform/path": "./src/platform/compat/path/index.ts",
|
|
203
206
|
"veryfront/platform/http": "./src/platform/compat/http/index.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.1163",
|
|
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.1163"
|
|
71
71
|
},
|
|
72
72
|
"type": "module",
|
|
73
73
|
"types": "./esm/extensions/ext-content-mdx/src/index.d.ts",
|