@kyro-cms/core 0.12.11 → 0.12.16
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 +1 -1
- package/dist/cli/index.cjs +0 -0
- package/dist/trpc/index.d.cts +1 -1
- package/dist/trpc/index.d.ts +1 -1
- package/package.json +23 -26
package/README.md
CHANGED
|
@@ -111,7 +111,7 @@ Kyro preserves Astro compatibility with two entrypoints:
|
|
|
111
111
|
|
|
112
112
|
Kyro is designed as a modular ecosystem:
|
|
113
113
|
- `kyro-connect` — Universal, type-safe API client and codegen for any framework.
|
|
114
|
-
- `kyro-rich-text-react` — A headless React component for rendering Kyro's
|
|
114
|
+
- `kyro-rich-text-react` — A headless React component for rendering Kyro's Richtext JSON content.
|
|
115
115
|
---
|
|
116
116
|
|
|
117
117
|
## Example usage
|
package/dist/cli/index.cjs
CHANGED
|
File without changes
|
package/dist/trpc/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BaseAdapter,
|
|
1
|
+
import { B as BaseAdapter, j as User, R as Request, b as FindResult } from '../types-BcZiluXL.cjs';
|
|
2
2
|
import { j as createWebhookService } from '../WebhookService-i-Kl3dvf.cjs';
|
|
3
3
|
import '../types-euTszc-1.cjs';
|
|
4
4
|
|
package/dist/trpc/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BaseAdapter,
|
|
1
|
+
import { B as BaseAdapter, j as User, R as Request, b as FindResult } from '../types-Dc8VAPhF.js';
|
|
2
2
|
import { j as createWebhookService } from '../WebhookService-ByrpAI4d.js';
|
|
3
3
|
import '../types-euTszc-1.js';
|
|
4
4
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyro-cms/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.16",
|
|
4
4
|
"description": "Astro-native headless CMS with multi-database adapters, multi-protocol APIs, and multi-vendor support",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
@@ -121,23 +121,6 @@
|
|
|
121
121
|
"files": [
|
|
122
122
|
"dist"
|
|
123
123
|
],
|
|
124
|
-
"scripts": {
|
|
125
|
-
"build": "tsup",
|
|
126
|
-
"dev": "NODE_NO_WARNINGS=1 tsup --watch",
|
|
127
|
-
"test": "vitest",
|
|
128
|
-
"test:run": "vitest run",
|
|
129
|
-
"test:smoke": "vitest run test/smoke.test.ts",
|
|
130
|
-
"test:coverage": "vitest run --coverage",
|
|
131
|
-
"typecheck": "tsc --noEmit",
|
|
132
|
-
"lint": "eslint src/",
|
|
133
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
134
|
-
"generate": "node --loader ts-node/esm scripts/generate-types.ts",
|
|
135
|
-
"db:generate": "drizzle-kit generate",
|
|
136
|
-
"db:migrate": "drizzle-kit migrate",
|
|
137
|
-
"db:push": "drizzle-kit push",
|
|
138
|
-
"db:studio": "drizzle-kit studio",
|
|
139
|
-
"db:seed": "tsx src/database/drizzle/seed.ts"
|
|
140
|
-
},
|
|
141
124
|
"bin": {
|
|
142
125
|
"kyro": "./dist/cli/index.js"
|
|
143
126
|
},
|
|
@@ -169,7 +152,6 @@
|
|
|
169
152
|
"@ai-sdk/openai": "^0.0.14",
|
|
170
153
|
"@aws-sdk/client-s3": "^3.751.0",
|
|
171
154
|
"@aws-sdk/s3-request-presigner": "^3.751.0",
|
|
172
|
-
"@kyro-cms/ai": "^0.1.2",
|
|
173
155
|
"@smithy/node-http-handler": "^4.7.0",
|
|
174
156
|
"@tiptap/core": "^3.23.6",
|
|
175
157
|
"@tiptap/extension-color": "^3.23.6",
|
|
@@ -207,7 +189,8 @@
|
|
|
207
189
|
"unstorage": "^1.17.5",
|
|
208
190
|
"ws": "^8.18.0",
|
|
209
191
|
"zod": "^3.24.0",
|
|
210
|
-
"zod-to-json-schema": "^3.25.2"
|
|
192
|
+
"zod-to-json-schema": "^3.25.2",
|
|
193
|
+
"@kyro-cms/ai": "0.12.16"
|
|
211
194
|
},
|
|
212
195
|
"devDependencies": {
|
|
213
196
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -230,11 +213,6 @@
|
|
|
230
213
|
"optionalDependencies": {
|
|
231
214
|
"pg": ">=8.0.0"
|
|
232
215
|
},
|
|
233
|
-
"pnpm": {
|
|
234
|
-
"overrides": {
|
|
235
|
-
"use-sync-external-store": "1.5.0"
|
|
236
|
-
}
|
|
237
|
-
},
|
|
238
216
|
"peerDependencies": {
|
|
239
217
|
"astro": "^7.1.1",
|
|
240
218
|
"ioredis": "^5.10.1",
|
|
@@ -258,5 +236,24 @@
|
|
|
258
236
|
"astro": {
|
|
259
237
|
"optional": true
|
|
260
238
|
}
|
|
239
|
+
},
|
|
240
|
+
"scripts": {
|
|
241
|
+
"build": "tsup",
|
|
242
|
+
"dev": "NODE_NO_WARNINGS=1 tsup --watch",
|
|
243
|
+
"test": "vitest",
|
|
244
|
+
"test:run": "vitest run",
|
|
245
|
+
"test:smoke": "vitest run test/smoke.test.ts",
|
|
246
|
+
"test:coverage": "vitest run --coverage",
|
|
247
|
+
"typecheck": "tsc --noEmit",
|
|
248
|
+
"lint": "eslint src/",
|
|
249
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
250
|
+
"generate": "node --loader ts-node/esm scripts/generate-types.ts",
|
|
251
|
+
"db:generate": "drizzle-kit generate",
|
|
252
|
+
"db:migrate": "drizzle-kit migrate",
|
|
253
|
+
"db:push": "drizzle-kit push",
|
|
254
|
+
"db:studio": "drizzle-kit studio",
|
|
255
|
+
"db:seed": "tsx src/database/drizzle/seed.ts",
|
|
256
|
+
"publish:packages": "node scripts/publish.js",
|
|
257
|
+
"publish:dry": "node scripts/publish.js --dry-run"
|
|
261
258
|
}
|
|
262
|
-
}
|
|
259
|
+
}
|