@theokit/sdk 4.2.8 → 4.2.10

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": "4.2.8",
3
+ "version": "4.2.10",
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/usetheodev/theokit-sdk#readme",
@@ -298,6 +298,16 @@
298
298
  "**/agent.js",
299
299
  "**/agent.cjs"
300
300
  ],
301
+ "scripts": {
302
+ "build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
303
+ "test": "vitest run --no-file-parallelism",
304
+ "test:watch": "vitest",
305
+ "test:contract": "vitest run --no-file-parallelism tests/theokit-consumer-contract.test.ts",
306
+ "prepublishOnly": "pnpm build && pnpm test:contract",
307
+ "typecheck": "tsc --noEmit",
308
+ "clean": "rm -rf dist",
309
+ "docs:json": "typedoc --options typedoc.json"
310
+ },
301
311
  "peerDependencies": {
302
312
  "@lancedb/lancedb": "^0.30.0",
303
313
  "@types/ws": ">=8.0.0",
@@ -365,14 +375,5 @@
365
375
  "typedoc": "^0.28.19",
366
376
  "ws": "^8.18.0",
367
377
  "zod": "^4.0.0"
368
- },
369
- "scripts": {
370
- "build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
371
- "test": "vitest run --no-file-parallelism",
372
- "test:watch": "vitest",
373
- "test:contract": "vitest run --no-file-parallelism tests/theokit-consumer-contract.test.ts",
374
- "typecheck": "tsc --noEmit",
375
- "clean": "rm -rf dist",
376
- "docs:json": "typedoc --options typedoc.json"
377
378
  }
378
- }
379
+ }