@theokit/sdk 2.4.0 → 2.5.0

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": "@theokit/sdk",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "TypeScript SDK for the Theo agent harness — same surface, local or cloud.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/usetheo/theokit-sdk#readme",
@@ -288,6 +288,15 @@
288
288
  "**/agent.js",
289
289
  "**/agent.cjs"
290
290
  ],
291
+ "scripts": {
292
+ "build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
293
+ "test": "vitest run --no-file-parallelism",
294
+ "test:watch": "vitest",
295
+ "typecheck": "tsc --noEmit",
296
+ "clean": "rm -rf dist",
297
+ "docs:json": "typedoc --options typedoc.json",
298
+ "docs:drift": "tsx scripts/check-docs-drift.ts"
299
+ },
291
300
  "peerDependencies": {
292
301
  "@lancedb/lancedb": "^0.30.0",
293
302
  "@types/ws": ">=8.0.0",
@@ -344,6 +353,8 @@
344
353
  "devDependencies": {
345
354
  "@opentelemetry/api": "^1.9.1",
346
355
  "@opentelemetry/sdk-trace-base": "^1.30.1",
356
+ "@theokit/sdk-handoff": "workspace:*",
357
+ "@theokit/sdk-memory": "workspace:*",
347
358
  "@types/better-sqlite3": "^7.6.13",
348
359
  "@types/proper-lockfile": "^4.1.4",
349
360
  "@types/ws": "^8.18.0",
@@ -353,17 +364,6 @@
353
364
  "sqlite-vec": "^0.1.9",
354
365
  "typedoc": "^0.28.19",
355
366
  "ws": "^8.18.0",
356
- "zod": "^4.0.0",
357
- "@theokit/sdk-handoff": "0.1.0",
358
- "@theokit/sdk-memory": "0.2.0"
359
- },
360
- "scripts": {
361
- "build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
362
- "test": "vitest run --no-file-parallelism",
363
- "test:watch": "vitest",
364
- "typecheck": "tsc --noEmit",
365
- "clean": "rm -rf dist",
366
- "docs:json": "typedoc --options typedoc.json",
367
- "docs:drift": "tsx scripts/check-docs-drift.ts"
367
+ "zod": "^4.0.0"
368
368
  }
369
- }
369
+ }