@krak-stack/registry 0.1.2 → 0.1.3
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/README.md +17 -1
- package/dist/components/ui/alert.d.ts +10 -0
- package/dist/components/ui/bubble.d.ts +16 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/empty.d.ts +11 -0
- package/dist/components/ui/marker.d.ts +10 -0
- package/dist/components/ui/message-scroller.d.ts +10 -0
- package/dist/components/ui/message.d.ts +10 -0
- package/dist/lib/docs-ai.d.ts +136 -0
- package/dist/lib/docs-ai.js +310 -0
- package/dist/lib/docs-core.d.ts +681 -0
- package/dist/lib/docs-core.js +2571 -0
- package/dist/lib/httpapi-ai.d.ts +54 -0
- package/dist/lib/httpapi-ai.js +361 -0
- package/dist/lib/httpapi-cli.d.ts +22 -0
- package/dist/lib/httpapi-cli.js +412 -0
- package/dist/lib/httpapi-client.d.ts +20 -0
- package/dist/lib/httpapi-client.js +50 -0
- package/dist/lib/httpapi-helpers.d.ts +105 -0
- package/dist/lib/httpapi-helpers.js +237 -0
- package/dist/lib/httpapi-mcp.d.ts +20 -0
- package/dist/lib/httpapi-mcp.js +366 -0
- package/dist/lib/query.js +128 -0
- package/dist/services/agent/client/atom.d.ts +56 -0
- package/dist/services/agent/client/index.d.ts +2 -0
- package/dist/services/agent/client/index.js +2239 -0
- package/dist/services/agent/client/widget.d.ts +52 -0
- package/dist/services/agent/index.d.ts +111 -0
- package/dist/services/agent/index.js +190 -0
- package/dist/services/agent/schema.d.ts +161 -0
- package/dist/services/agent/schema.js +135 -0
- package/package.json +58 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krak-stack/registry",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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"
|
|
@@ -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
|
}
|