@blyp/core 0.1.22 → 0.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blyp/core",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "A high-performance, modular logger with Bun-first runtime detection and TypeScript support. Built on Pino and supports Elysia, Hono, Express, Fastify, NestJS, Next.js App Router, React Router, Astro, Nitro, Nuxt, TanStack Start, and SvelteKit.",
5
5
  "keywords": [
6
6
  "logger",
@@ -68,6 +68,9 @@
68
68
  "ai/vercel": [
69
69
  "dist/ai/vercel/index.d.ts"
70
70
  ],
71
+ "ai/better-agent": [
72
+ "dist/ai/better-agent/index.d.ts"
73
+ ],
71
74
  "ai/openai": [
72
75
  "dist/ai/openai/index.d.ts"
73
76
  ],
@@ -185,6 +188,11 @@
185
188
  "import": "./dist/ai/vercel.mjs",
186
189
  "require": "./dist/ai/vercel.js"
187
190
  },
191
+ "./ai/better-agent": {
192
+ "types": "./dist/ai/better-agent/index.d.ts",
193
+ "import": "./dist/ai/better-agent.mjs",
194
+ "require": "./dist/ai/better-agent.js"
195
+ },
188
196
  "./ai/openai": {
189
197
  "types": "./dist/ai/openai/index.d.ts",
190
198
  "import": "./dist/ai/openai.mjs",
@@ -273,6 +281,7 @@
273
281
  "clean": "rm -rf dist .log"
274
282
  },
275
283
  "devDependencies": {
284
+ "@better-agent/core": "0.1.0-beta.1",
276
285
  "@databuddy/sdk": "2.3.29",
277
286
  "@nestjs/common": "11.1.16",
278
287
  "@nestjs/core": "11.1.16",
@@ -299,6 +308,7 @@
299
308
  "tsup": "8.5.1"
300
309
  },
301
310
  "peerDependencies": {
311
+ "@better-agent/core": "^0.1.0-beta.1",
302
312
  "@databuddy/sdk": "^2",
303
313
  "@logtail/node": "^0.5",
304
314
  "@nestjs/common": "^10 || ^11",
@@ -329,6 +339,9 @@
329
339
  "typescript": "^5"
330
340
  },
331
341
  "peerDependenciesMeta": {
342
+ "@better-agent/core": {
343
+ "optional": true
344
+ },
332
345
  "@databuddy/sdk": {
333
346
  "optional": true
334
347
  },