@krak-stack/registry 0.1.18 → 0.1.20

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 (54) hide show
  1. package/README.md +5 -0
  2. package/dist/components/ui/code-block.d.ts +1 -3
  3. package/dist/components/ui/code-block.js +32 -60
  4. package/dist/components/ui/data-table.d.ts +202 -273
  5. package/dist/components/ui/data-table.js +1810 -2115
  6. package/dist/components/ui/effect-form.js +169 -170
  7. package/dist/components/ui/form.js +112 -113
  8. package/dist/components/ui/icon-input.js +40 -43
  9. package/dist/components/ui/menubar.d.ts +29 -0
  10. package/dist/components/ui/pagination.js +2 -2
  11. package/dist/components/ui/sidebar-layout.js +67 -72
  12. package/dist/components/ui/theme-switcher.js +3 -3
  13. package/dist/components/ui/virtualized-combobox.js +31 -34
  14. package/dist/lib/{docs-core.d.ts → docs.d.ts} +135 -144
  15. package/dist/lib/{docs-core.js → docs.js} +597 -440
  16. package/dist/lib/documentation-toolkit.d.ts +19 -1
  17. package/dist/lib/documentation-toolkit.js +164 -66
  18. package/dist/lib/httpapi-cli.d.ts +5 -4
  19. package/dist/lib/httpapi-cli.js +256 -34
  20. package/dist/lib/httpapi-client.js +3 -3
  21. package/dist/lib/httpapi-helpers.d.ts +8 -6
  22. package/dist/lib/httpapi-helpers.js +12 -12
  23. package/dist/lib/httpapi-mcp.js +3 -3
  24. package/dist/lib/httpapi-toolkit.js +3 -3
  25. package/dist/lib/markdown/content.d.ts +13 -0
  26. package/dist/lib/markdown/server.d.ts +19 -0
  27. package/dist/lib/query.js +6 -6
  28. package/dist/lib/seo.js +2 -2
  29. package/dist/lib/webfetch-toolkit.js +6 -6
  30. package/dist/services/agent/client/atom.d.ts +7 -0
  31. package/dist/services/agent/client/index.js +481 -304
  32. package/dist/services/agent/index.d.ts +16 -0
  33. package/dist/services/agent/index.js +102 -1
  34. package/dist/services/agent/schema.d.ts +28 -0
  35. package/dist/services/agent/schema.js +15 -4
  36. package/dist/services/file-extraction/index.js +4 -4
  37. package/dist/services/file-extraction/schema.js +2 -2
  38. package/dist/services/health/api.builder.d.ts +66 -0
  39. package/dist/services/health/api.group.d.ts +58 -0
  40. package/dist/services/health/index.d.ts +253 -0
  41. package/dist/services/health/index.js +186 -0
  42. package/dist/services/health/schema.d.ts +50 -0
  43. package/dist/services/notification/channels/ses/index.js +2 -2
  44. package/dist/services/notification/channels/ses/schema.js +2 -2
  45. package/dist/services/notification/client/index.js +5 -5
  46. package/dist/services/notification/index.js +2 -2
  47. package/dist/services/notification/persistence/drizzle.js +2 -2
  48. package/dist/services/notification/persistence/index.js +15 -15
  49. package/dist/services/notification/persistence/schema.js +12 -12
  50. package/dist/services/notification/public.js +7 -7
  51. package/dist/services/notification/schema.js +2 -2
  52. package/dist/services/s3/index.js +2 -2
  53. package/dist/services/s3/schema.js +2 -2
  54. package/package.json +10 -38
@@ -0,0 +1,186 @@
1
+ // ../../src/services/health/index.ts
2
+ import { Context, Effect as Effect2, Exit, Layer } from "effect";
3
+
4
+ // ../../src/services/health/api.builder.ts
5
+ import { Effect } from "effect";
6
+ var respond = (check) => check.pipe(Effect.flatMap((response) => response.status === "UP" ? Effect.succeed(response) : Effect.fail(response)));
7
+ var healthHandler = (handlers) => handlers.handle("getHealth", () => Effect.flatMap(HealthService, ({ aggregate }) => respond(aggregate()))).handle("getLiveness", () => Effect.flatMap(HealthService, ({ live }) => respond(live()))).handle("getReadiness", () => Effect.flatMap(HealthService, ({ ready }) => respond(ready()))).handle("getStartup", () => Effect.flatMap(HealthService, ({ started }) => respond(started())));
8
+ // ../../src/services/health/api.group.ts
9
+ import {
10
+ HttpApiEndpoint,
11
+ HttpApiError,
12
+ HttpApiGroup,
13
+ OpenApi
14
+ } from "effect/unstable/httpapi";
15
+
16
+ // ../../src/services/health/schema.ts
17
+ import { Schema } from "effect";
18
+ import { HttpApiSchema } from "effect/unstable/httpapi";
19
+ var HealthStatus = Schema.Literals(["UP", "DOWN"]).annotate({
20
+ identifier: "HealthStatus",
21
+ title: "Health Status",
22
+ description: "Whether a health check is up or down"
23
+ });
24
+ var HealthCheckData = Schema.Record(Schema.String, Schema.Union([Schema.String, Schema.Boolean, Schema.Number])).annotate({
25
+ identifier: "HealthCheckData",
26
+ title: "Health Check Data",
27
+ description: "Non-sensitive diagnostic values for a health check"
28
+ });
29
+ var HealthCheckOutcome = Schema.Struct({
30
+ status: HealthStatus,
31
+ data: Schema.optionalKey(HealthCheckData)
32
+ }).annotate({
33
+ identifier: "HealthCheckOutcome",
34
+ title: "Health Check Outcome",
35
+ description: "The status and optional diagnostic data returned by a check"
36
+ });
37
+ var HealthCheckResult = Schema.Struct({
38
+ name: Schema.NonEmptyString,
39
+ status: HealthStatus,
40
+ data: Schema.optionalKey(HealthCheckData)
41
+ }).annotate({
42
+ identifier: "HealthCheckResult",
43
+ title: "Health Check Result",
44
+ description: "The outcome of a named health check"
45
+ });
46
+ var HealthUpResponse = Schema.Struct({
47
+ status: Schema.Literal("UP"),
48
+ checks: Schema.Array(HealthCheckResult)
49
+ }).annotate({
50
+ identifier: "HealthUpResponse",
51
+ title: "Healthy Response",
52
+ description: "A response where all health checks are up",
53
+ examples: [{ status: "UP", checks: [] }]
54
+ });
55
+ var HealthDownResponse = Schema.Struct({
56
+ status: Schema.Literal("DOWN"),
57
+ checks: Schema.Array(HealthCheckResult)
58
+ }).pipe(HttpApiSchema.status(503)).annotate({
59
+ identifier: "HealthDownResponse",
60
+ title: "Unhealthy Response",
61
+ description: "A response where one or more health checks are down",
62
+ examples: [
63
+ {
64
+ status: "DOWN",
65
+ checks: [{ name: "database", status: "DOWN" }]
66
+ }
67
+ ]
68
+ });
69
+ var HealthResponse = Schema.Union([
70
+ HealthUpResponse,
71
+ HealthDownResponse
72
+ ]).annotate({
73
+ identifier: "HealthResponse",
74
+ title: "Health Response",
75
+ description: "An aggregate health response"
76
+ });
77
+
78
+ // ../../src/services/health/api.group.ts
79
+ var errors = [HealthDownResponse, HttpApiError.InternalServerError];
80
+ var HealthApiGroup = HttpApiGroup.make("health").annotateMerge(OpenApi.annotations({
81
+ title: "Health",
82
+ description: "Application health checks"
83
+ })).add(HttpApiEndpoint.get("getHealth", "/health", {
84
+ success: HealthUpResponse,
85
+ error: errors
86
+ }).annotateMerge(OpenApi.annotations({
87
+ summary: "Get aggregate health",
88
+ description: "Runs all registered liveness, readiness, and startup checks."
89
+ }))).add(HttpApiEndpoint.get("getLiveness", "/health/live", {
90
+ success: HealthUpResponse,
91
+ error: errors
92
+ }).annotateMerge(OpenApi.annotations({
93
+ summary: "Get application liveness",
94
+ description: "Returns whether the application process is responsive."
95
+ }))).add(HttpApiEndpoint.get("getReadiness", "/health/ready", {
96
+ success: HealthUpResponse,
97
+ error: errors
98
+ }).annotateMerge(OpenApi.annotations({
99
+ summary: "Get application readiness",
100
+ description: "Returns whether the application is ready to serve traffic."
101
+ }))).add(HttpApiEndpoint.get("getStartup", "/health/started", {
102
+ success: HealthUpResponse,
103
+ error: errors
104
+ }).annotateMerge(OpenApi.annotations({
105
+ summary: "Get application startup status",
106
+ description: "Returns whether the application has completed startup."
107
+ })));
108
+
109
+ // ../../src/services/health/index.ts
110
+ class HealthServiceConfig extends Context.Service()("@krak-stack/registry/HealthServiceConfig") {
111
+ static layerWith = ({
112
+ checks = {}
113
+ } = {}) => Layer.effect(this, Effect2.gen(function* () {
114
+ const services = yield* Effect2.context();
115
+ const resolve = (registered) => (registered ?? []).map(({ name, check }) => ({
116
+ name,
117
+ check: Effect2.provide(check, services)
118
+ }));
119
+ return {
120
+ live: resolve(checks.live),
121
+ ready: resolve(checks.ready),
122
+ started: resolve(checks.started)
123
+ };
124
+ }));
125
+ }
126
+
127
+ class HealthService extends Context.Service()("@krak-stack/registry/HealthService", {
128
+ make: Effect2.gen(function* () {
129
+ const checks = yield* HealthServiceConfig;
130
+ const allChecks = Array.from(new Set([...checks.live, ...checks.ready, ...checks.started]));
131
+ const execute = Effect2.fn("HealthService.execute")(function* (healthCheck) {
132
+ const exit = yield* Effect2.exit(healthCheck.check);
133
+ if (!Exit.isSuccess(exit)) {
134
+ return {
135
+ name: healthCheck.name,
136
+ status: "DOWN"
137
+ };
138
+ }
139
+ return exit.value.data === undefined ? {
140
+ name: healthCheck.name,
141
+ status: exit.value.status
142
+ } : {
143
+ name: healthCheck.name,
144
+ status: exit.value.status,
145
+ data: exit.value.data
146
+ };
147
+ });
148
+ const run = Effect2.fn("HealthService.run")(function* (registered) {
149
+ const results = yield* Effect2.forEach(registered, execute, {
150
+ concurrency: "unbounded"
151
+ });
152
+ if (results.every(({ status }) => status === "UP")) {
153
+ return {
154
+ status: "UP",
155
+ checks: results
156
+ };
157
+ }
158
+ return {
159
+ status: "DOWN",
160
+ checks: results
161
+ };
162
+ });
163
+ const aggregate = Effect2.fn("HealthService.aggregate")(() => run(allChecks));
164
+ const live = Effect2.fn("HealthService.live")(() => run(checks.live));
165
+ const ready = Effect2.fn("HealthService.ready")(() => run(checks.ready));
166
+ const started = Effect2.fn("HealthService.started")(() => run(checks.started));
167
+ return { aggregate, live, ready, started };
168
+ })
169
+ }) {
170
+ static up = (data) => data === undefined ? { status: "UP" } : { status: "UP", data };
171
+ static down = (data) => data === undefined ? { status: "DOWN" } : { status: "DOWN", data };
172
+ static layer = Layer.effect(this, this.make).pipe(Layer.provide(HealthServiceConfig.layerWith()));
173
+ static layerWith = (options) => Layer.effect(this, this.make).pipe(Layer.provide(HealthServiceConfig.layerWith(options)));
174
+ }
175
+ export {
176
+ HealthApiGroup,
177
+ HealthCheckData,
178
+ HealthCheckOutcome,
179
+ HealthCheckResult,
180
+ HealthDownResponse,
181
+ HealthResponse,
182
+ HealthService,
183
+ HealthStatus,
184
+ HealthUpResponse,
185
+ healthHandler
186
+ };
@@ -0,0 +1,50 @@
1
+ import { Schema } from "effect";
2
+ export declare const HealthStatus: Schema.Literals<readonly ["UP", "DOWN"]>;
3
+ export type HealthStatus = typeof HealthStatus.Type;
4
+ export declare const HealthCheckData: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>;
5
+ export type HealthCheckData = typeof HealthCheckData.Type;
6
+ export declare const HealthCheckOutcome: Schema.Struct<{
7
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
8
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
9
+ }>;
10
+ export type HealthCheckOutcome = typeof HealthCheckOutcome.Type;
11
+ export declare const HealthCheckResult: Schema.Struct<{
12
+ readonly name: Schema.NonEmptyString;
13
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
14
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
15
+ }>;
16
+ export type HealthCheckResult = typeof HealthCheckResult.Type;
17
+ export declare const HealthUpResponse: Schema.Struct<{
18
+ readonly status: Schema.Literal<"UP">;
19
+ readonly checks: Schema.$Array<Schema.Struct<{
20
+ readonly name: Schema.NonEmptyString;
21
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
22
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
23
+ }>>;
24
+ }>;
25
+ export type HealthUpResponse = typeof HealthUpResponse.Type;
26
+ export declare const HealthDownResponse: Schema.Struct<{
27
+ readonly status: Schema.Literal<"DOWN">;
28
+ readonly checks: Schema.$Array<Schema.Struct<{
29
+ readonly name: Schema.NonEmptyString;
30
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
31
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
32
+ }>>;
33
+ }>;
34
+ export type HealthDownResponse = typeof HealthDownResponse.Type;
35
+ export declare const HealthResponse: Schema.Union<readonly [Schema.Struct<{
36
+ readonly status: Schema.Literal<"UP">;
37
+ readonly checks: Schema.$Array<Schema.Struct<{
38
+ readonly name: Schema.NonEmptyString;
39
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
40
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
41
+ }>>;
42
+ }>, Schema.Struct<{
43
+ readonly status: Schema.Literal<"DOWN">;
44
+ readonly checks: Schema.$Array<Schema.Struct<{
45
+ readonly name: Schema.NonEmptyString;
46
+ readonly status: Schema.Literals<readonly ["UP", "DOWN"]>;
47
+ readonly data: Schema.optionalKey<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Boolean, Schema.Number]>>>;
48
+ }>>;
49
+ }>]>;
50
+ export type HealthResponse = typeof HealthResponse.Type;
@@ -144,6 +144,6 @@ var buildDestination = (email) => {
144
144
  return destination;
145
145
  };
146
146
  export {
147
- SesNotificationConfig,
148
- SesNotificationChannel
147
+ SesNotificationChannel,
148
+ SesNotificationConfig
149
149
  };
@@ -30,6 +30,6 @@ var SesEmailNotification = Schema.Struct({
30
30
  ]
31
31
  });
32
32
  export {
33
- SesEmailNotification,
34
- SesEmailAddress
33
+ SesEmailAddress,
34
+ SesEmailNotification
35
35
  };
@@ -1115,10 +1115,10 @@ var formatNotificationDate = (value, locale) => {
1115
1115
  };
1116
1116
  var notificationTitle = (notification) => Schema.is(Schema.String)(notification.title) ? notification.title : defaultMessages.en.notifications;
1117
1117
  export {
1118
- notificationMenuMessages,
1119
- NotificationMenuTrigger,
1120
- NotificationMenu,
1121
- NotificationListItem,
1118
+ NotificationEmpty,
1122
1119
  NotificationList,
1123
- NotificationEmpty
1120
+ NotificationListItem,
1121
+ NotificationMenu,
1122
+ NotificationMenuTrigger,
1123
+ notificationMenuMessages
1124
1124
  };
@@ -92,6 +92,6 @@ class NotificationService extends Context2.Service()("NotificationService", {
92
92
  ]);
93
93
  }
94
94
  export {
95
- NotificationService,
96
- NotificationPersistenceStore
95
+ NotificationPersistenceStore,
96
+ NotificationService
97
97
  };
@@ -208,7 +208,7 @@ var notificationDeliveries = pgTable("notification_deliveries", {
208
208
  check("notification_deliveries_lease_check", sql`(${table.claimedBy} is null and ${table.leaseExpiresAt} is null) or (${table.claimedBy} is not null and ${table.leaseExpiresAt} is not null)`)
209
209
  ]);
210
210
  export {
211
- notifications,
211
+ notificationDeliveries,
212
212
  notificationSettings,
213
- notificationDeliveries
213
+ notifications
214
214
  };
@@ -208,20 +208,20 @@ var notificationDeliveries = pgTable("notification_deliveries", {
208
208
  check("notification_deliveries_lease_check", sql`(${table.claimedBy} is null and ${table.leaseExpiresAt} is null) or (${table.claimedBy} is not null and ${table.leaseExpiresAt} is not null)`)
209
209
  ]);
210
210
  export {
211
- notifications,
212
- notificationSettings,
213
- notificationDeliveries,
214
- decodeNotificationDeliveryPayload,
215
- PersistedNotificationDeliveryPayload,
216
- NotificationSettingSchema,
217
- NotificationSettingId,
218
- NotificationId,
219
- NotificationDeliveryStatus,
220
- NotificationDeliverySchema,
221
- NotificationDeliveryPurpose,
222
- NotificationDeliveryId,
223
- NOTIFICATION_DELIVERY_STATUSES,
224
- NOTIFICATION_DELIVERY_PURPOSES,
211
+ EmailDeliveryPayloadV1,
225
212
  InboxNotificationSchema,
226
- EmailDeliveryPayloadV1
213
+ NOTIFICATION_DELIVERY_PURPOSES,
214
+ NOTIFICATION_DELIVERY_STATUSES,
215
+ NotificationDeliveryId,
216
+ NotificationDeliveryPurpose,
217
+ NotificationDeliverySchema,
218
+ NotificationDeliveryStatus,
219
+ NotificationId,
220
+ NotificationSettingId,
221
+ NotificationSettingSchema,
222
+ PersistedNotificationDeliveryPayload,
223
+ decodeNotificationDeliveryPayload,
224
+ notificationDeliveries,
225
+ notificationSettings,
226
+ notifications
227
227
  };
@@ -102,17 +102,17 @@ var PersistedNotificationDeliveryPayload = Schema.Union([
102
102
  ]).annotate({ identifier: "PersistedNotificationDeliveryPayload" });
103
103
  var decodeNotificationDeliveryPayload = Schema.decodeUnknownEffect(PersistedNotificationDeliveryPayload);
104
104
  export {
105
- decodeNotificationDeliveryPayload,
106
- PersistedNotificationDeliveryPayload,
107
- NotificationSettingSchema,
108
- NotificationSettingId,
109
- NotificationId,
110
- NotificationDeliveryStatus,
111
- NotificationDeliverySchema,
112
- NotificationDeliveryPurpose,
113
- NotificationDeliveryId,
114
- NOTIFICATION_DELIVERY_STATUSES,
115
- NOTIFICATION_DELIVERY_PURPOSES,
105
+ EmailDeliveryPayloadV1,
116
106
  InboxNotificationSchema,
117
- EmailDeliveryPayloadV1
107
+ NOTIFICATION_DELIVERY_PURPOSES,
108
+ NOTIFICATION_DELIVERY_STATUSES,
109
+ NotificationDeliveryId,
110
+ NotificationDeliveryPurpose,
111
+ NotificationDeliverySchema,
112
+ NotificationDeliveryStatus,
113
+ NotificationId,
114
+ NotificationSettingId,
115
+ NotificationSettingSchema,
116
+ PersistedNotificationDeliveryPayload,
117
+ decodeNotificationDeliveryPayload
118
118
  };
@@ -1208,12 +1208,12 @@ var formatNotificationDate = (value, locale) => {
1208
1208
  };
1209
1209
  var notificationTitle = (notification) => Schema2.is(Schema2.String)(notification.title) ? notification.title : defaultMessages.en.notifications;
1210
1210
  export {
1211
- notificationMenuMessages,
1212
- NotificationService,
1213
- NotificationPersistenceStore,
1214
- NotificationMenuTrigger,
1215
- NotificationMenu,
1216
- NotificationListItem,
1211
+ NotificationEmpty,
1217
1212
  NotificationList,
1218
- NotificationEmpty
1213
+ NotificationListItem,
1214
+ NotificationMenu,
1215
+ NotificationMenuTrigger,
1216
+ NotificationPersistenceStore,
1217
+ NotificationService,
1218
+ notificationMenuMessages
1219
1219
  };
@@ -25,6 +25,6 @@ class NotificationSendError extends Schema.TaggedErrorClass()("NotificationSendE
25
25
  }) {
26
26
  }
27
27
  export {
28
- NotificationSendError,
29
- NotificationMessageSchema
28
+ NotificationMessageSchema,
29
+ NotificationSendError
30
30
  };
@@ -206,6 +206,6 @@ class S3Service extends Context.Service()("S3Service", {
206
206
  static testLayer = (service) => Layer.succeed(this, service);
207
207
  }
208
208
  export {
209
- S3ServiceConfig,
210
- S3Service
209
+ S3Service,
210
+ S3ServiceConfig
211
211
  };
@@ -31,7 +31,7 @@ class S3ServiceError extends Schema.TaggedErrorClass()("S3ServiceError", {
31
31
  }) {
32
32
  }
33
33
  export {
34
- S3ServiceError,
34
+ PresignUploadPayload,
35
35
  PresignedUpload,
36
- PresignUploadPayload
36
+ S3ServiceError
37
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krak-stack/registry",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "Tree-shakable KrakStack components and Effect services.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -49,8 +49,8 @@
49
49
  "import": "./dist/lib/httpapi-mcp.js"
50
50
  },
51
51
  "./docs": {
52
- "types": "./dist/lib/docs-core.d.ts",
53
- "import": "./dist/lib/docs-core.js"
52
+ "types": "./dist/lib/docs.d.ts",
53
+ "import": "./dist/lib/docs.js"
54
54
  },
55
55
  "./documentation-toolkit": {
56
56
  "types": "./dist/lib/documentation-toolkit.d.ts",
@@ -199,6 +199,10 @@
199
199
  "types": "./dist/services/file-extraction/schema.d.ts",
200
200
  "import": "./dist/services/file-extraction/schema.js"
201
201
  },
202
+ "./service-health": {
203
+ "types": "./dist/services/health/index.d.ts",
204
+ "import": "./dist/services/health/index.js"
205
+ },
202
206
  "./tailwind.css": "./tailwind.css",
203
207
  "./package.json": "./package.json"
204
208
  },
@@ -215,20 +219,15 @@
215
219
  "peerDependencies": {
216
220
  "@aws-sdk/client-sesv2": "^3.1068.0",
217
221
  "@base-ui/react": "^1.5.0",
218
- "@dnd-kit/core": "^6.3.1",
219
- "@dnd-kit/sortable": "^10.0.0",
220
- "@dnd-kit/utilities": "^3.2.2",
221
222
  "@effect/atom-react": "4.0.0-beta.85",
222
223
  "@effect/platform-browser": "4.0.0-beta.85",
223
- "@iconify-json/lucide": "^1.2.83",
224
224
  "@iconify/react": "^6.0.2",
225
225
  "@inlang/paraglide-js": "^2.19.0",
226
226
  "@lucas-barake/effect-form": "0.25.0-beta.6",
227
227
  "@lucas-barake/effect-form-react": "0.26.0-beta.5",
228
- "@streamdown/code": "^1.1.1",
228
+ "@tanstack/highlight": "^0.0.10",
229
229
  "@tanstack/react-form": "^1.33.0",
230
230
  "@tanstack/react-router": "^1.170.15",
231
- "@tanstack/react-table": "^9.1.2",
232
231
  "@tanstack/react-virtual": "^3.14.5",
233
232
  "@xberg-io/xberg": "1.0.14",
234
233
  "class-variance-authority": "^0.7.1",
@@ -239,33 +238,18 @@
239
238
  "lucide-react": "^1.18.0",
240
239
  "react": "^19.2.0",
241
240
  "react-dom": "^19.2.0",
242
- "shiki": "^4.2.0",
243
- "streamdown": "^2.5.0",
244
- "tailwind-merge": "^3.6.0",
245
- "yaml": "^2.8.2"
241
+ "tailwind-merge": "^3.6.0"
246
242
  },
247
243
  "peerDependenciesMeta": {
248
244
  "@aws-sdk/client-sesv2": {
249
245
  "optional": true
250
246
  },
251
- "@dnd-kit/core": {
252
- "optional": true
253
- },
254
- "@dnd-kit/sortable": {
255
- "optional": true
256
- },
257
- "@dnd-kit/utilities": {
258
- "optional": true
259
- },
260
247
  "@effect/atom-react": {
261
248
  "optional": true
262
249
  },
263
250
  "@effect/platform-browser": {
264
251
  "optional": true
265
252
  },
266
- "@iconify-json/lucide": {
267
- "optional": true
268
- },
269
253
  "@iconify/react": {
270
254
  "optional": true
271
255
  },
@@ -281,7 +265,7 @@
281
265
  "@lucas-barake/effect-form-react": {
282
266
  "optional": true
283
267
  },
284
- "@streamdown/code": {
268
+ "@tanstack/highlight": {
285
269
  "optional": true
286
270
  },
287
271
  "@tanstack/react-form": {
@@ -290,23 +274,11 @@
290
274
  "@tanstack/react-router": {
291
275
  "optional": true
292
276
  },
293
- "@tanstack/react-table": {
294
- "optional": true
295
- },
296
277
  "@tanstack/react-virtual": {
297
278
  "optional": true
298
279
  },
299
280
  "@xberg-io/xberg": {
300
281
  "optional": true
301
- },
302
- "shiki": {
303
- "optional": true
304
- },
305
- "streamdown": {
306
- "optional": true
307
- },
308
- "yaml": {
309
- "optional": true
310
282
  }
311
283
  }
312
284
  }