@krak-stack/registry 0.1.2 → 0.1.4

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 (50) hide show
  1. package/README.md +17 -1
  2. package/dist/components/ui/alert.d.ts +10 -0
  3. package/dist/components/ui/app-brand.js +20 -20
  4. package/dist/components/ui/bubble.d.ts +16 -0
  5. package/dist/components/ui/code-block.js +38 -38
  6. package/dist/components/ui/collapsible.d.ts +5 -0
  7. package/dist/components/ui/copy-button.js +16 -16
  8. package/dist/components/ui/data-table.js +687 -687
  9. package/dist/components/ui/editing-locale-switcher.js +54 -54
  10. package/dist/components/ui/effect-form.js +490 -490
  11. package/dist/components/ui/empty.d.ts +11 -0
  12. package/dist/components/ui/file-picker.js +96 -96
  13. package/dist/components/ui/form.js +418 -418
  14. package/dist/components/ui/google-map.js +27 -27
  15. package/dist/components/ui/icon-input.js +93 -93
  16. package/dist/components/ui/loading.js +5 -5
  17. package/dist/components/ui/locale-switcher.js +48 -48
  18. package/dist/components/ui/marker.d.ts +10 -0
  19. package/dist/components/ui/message-scroller.d.ts +10 -0
  20. package/dist/components/ui/message.d.ts +10 -0
  21. package/dist/components/ui/pagination.js +92 -92
  22. package/dist/components/ui/search-menu.js +93 -93
  23. package/dist/components/ui/sidebar-layout.js +156 -156
  24. package/dist/components/ui/stats-card.js +28 -28
  25. package/dist/components/ui/theme-switcher.js +64 -64
  26. package/dist/components/ui/virtualized-combobox.js +66 -66
  27. package/dist/lib/docs-ai.d.ts +136 -0
  28. package/dist/lib/docs-ai.js +310 -0
  29. package/dist/lib/docs-core.d.ts +681 -0
  30. package/dist/lib/docs-core.js +2571 -0
  31. package/dist/lib/httpapi-ai.d.ts +54 -0
  32. package/dist/lib/httpapi-ai.js +361 -0
  33. package/dist/lib/httpapi-cli.d.ts +22 -0
  34. package/dist/lib/httpapi-cli.js +412 -0
  35. package/dist/lib/httpapi-client.d.ts +20 -0
  36. package/dist/lib/httpapi-client.js +50 -0
  37. package/dist/lib/httpapi-helpers.d.ts +105 -0
  38. package/dist/lib/httpapi-helpers.js +237 -0
  39. package/dist/lib/httpapi-mcp.d.ts +20 -0
  40. package/dist/lib/httpapi-mcp.js +366 -0
  41. package/dist/lib/query.js +128 -0
  42. package/dist/services/agent/client/atom.d.ts +56 -0
  43. package/dist/services/agent/client/index.d.ts +2 -0
  44. package/dist/services/agent/client/index.js +2239 -0
  45. package/dist/services/agent/client/widget.d.ts +52 -0
  46. package/dist/services/agent/index.d.ts +111 -0
  47. package/dist/services/agent/index.js +190 -0
  48. package/dist/services/agent/schema.d.ts +161 -0
  49. package/dist/services/agent/schema.js +135 -0
  50. package/package.json +59 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krak-stack/registry",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Tree-shakable KrakStack components and Effect services.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,6 +16,50 @@
16
16
  "type": "module",
17
17
  "sideEffects": false,
18
18
  "exports": {
19
+ "./agent": {
20
+ "types": "./dist/services/agent/index.d.ts",
21
+ "import": "./dist/services/agent/index.js"
22
+ },
23
+ "./agent/client": {
24
+ "types": "./dist/services/agent/client/index.d.ts",
25
+ "import": "./dist/services/agent/client/index.js"
26
+ },
27
+ "./agent/schema": {
28
+ "types": "./dist/services/agent/schema.d.ts",
29
+ "import": "./dist/services/agent/schema.js"
30
+ },
31
+ "./httpapi/ai": {
32
+ "types": "./dist/lib/httpapi-ai.d.ts",
33
+ "import": "./dist/lib/httpapi-ai.js"
34
+ },
35
+ "./httpapi/cli": {
36
+ "types": "./dist/lib/httpapi-cli.d.ts",
37
+ "import": "./dist/lib/httpapi-cli.js"
38
+ },
39
+ "./httpapi/client": {
40
+ "types": "./dist/lib/httpapi-client.d.ts",
41
+ "import": "./dist/lib/httpapi-client.js"
42
+ },
43
+ "./httpapi/helpers": {
44
+ "types": "./dist/lib/httpapi-helpers.d.ts",
45
+ "import": "./dist/lib/httpapi-helpers.js"
46
+ },
47
+ "./httpapi/mcp": {
48
+ "types": "./dist/lib/httpapi-mcp.d.ts",
49
+ "import": "./dist/lib/httpapi-mcp.js"
50
+ },
51
+ "./docs": {
52
+ "types": "./dist/lib/docs-core.d.ts",
53
+ "import": "./dist/lib/docs-core.js"
54
+ },
55
+ "./docs-ai": {
56
+ "types": "./dist/lib/docs-ai.d.ts",
57
+ "import": "./dist/lib/docs-ai.js"
58
+ },
59
+ "./query": {
60
+ "types": "./dist/lib/query.d.ts",
61
+ "import": "./dist/lib/query.js"
62
+ },
19
63
  "./app-brand": {
20
64
  "types": "./dist/components/ui/app-brand.d.ts",
21
65
  "import": "./dist/components/ui/app-brand.js"
@@ -131,7 +175,7 @@
131
175
  "access": "public"
132
176
  },
133
177
  "scripts": {
134
- "build": "bun run build.ts",
178
+ "build": "NODE_ENV=production bun run build.ts",
135
179
  "prepack": "bun run build"
136
180
  },
137
181
  "peerDependencies": {
@@ -143,6 +187,7 @@
143
187
  "@effect/ai-openai-compat": "4.0.0-beta.85",
144
188
  "@effect/atom-react": "4.0.0-beta.85",
145
189
  "@effect/platform-browser": "4.0.0-beta.85",
190
+ "@iconify-json/lucide": "^1.2.83",
146
191
  "@iconify/react": "^6.0.2",
147
192
  "@inlang/paraglide-js": "^2.19.0",
148
193
  "@lucas-barake/effect-form": "0.25.0-beta.6",
@@ -154,13 +199,15 @@
154
199
  "@tanstack/react-virtual": "^3.14.5",
155
200
  "class-variance-authority": "^0.7.1",
156
201
  "clsx": "^2.1.1",
202
+ "cmdk": "^1.1.1",
157
203
  "effect": "4.0.0-beta.99",
158
204
  "lucide-react": "^1.18.0",
159
205
  "react": "^19.2.0",
160
206
  "react-dom": "^19.2.0",
161
207
  "shiki": "^4.2.0",
162
208
  "streamdown": "^2.5.0",
163
- "tailwind-merge": "^3.6.0"
209
+ "tailwind-merge": "^3.6.0",
210
+ "yaml": "^2.8.2"
164
211
  },
165
212
  "peerDependenciesMeta": {
166
213
  "@aws-sdk/client-sesv2": {
@@ -184,9 +231,15 @@
184
231
  "@effect/platform-browser": {
185
232
  "optional": true
186
233
  },
234
+ "@iconify-json/lucide": {
235
+ "optional": true
236
+ },
187
237
  "@iconify/react": {
188
238
  "optional": true
189
239
  },
240
+ "cmdk": {
241
+ "optional": true
242
+ },
190
243
  "@lucas-barake/effect-form": {
191
244
  "optional": true
192
245
  },
@@ -213,6 +266,9 @@
213
266
  },
214
267
  "streamdown": {
215
268
  "optional": true
269
+ },
270
+ "yaml": {
271
+ "optional": true
216
272
  }
217
273
  }
218
274
  }