@theokit/sdk-cache 0.3.2 → 1.0.1

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,13 +1,13 @@
1
1
  {
2
2
  "name": "@theokit/sdk-cache",
3
- "version": "0.3.2",
3
+ "version": "1.0.1",
4
4
  "description": "Semantic LLM response cache for @theokit/sdk — vector + FTS hybrid lookup, in-memory + JSON file stores, plugin integration.",
5
5
  "license": "Apache-2.0",
6
- "homepage": "https://github.com/usetheodev/theokit-sdk#readme",
7
- "bugs": "https://github.com/usetheodev/theokit-sdk/issues",
6
+ "homepage": "https://github.com/usetheokit/theokit-sdk#readme",
7
+ "bugs": "https://github.com/usetheokit/theokit-sdk/issues",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/usetheodev/theokit-sdk.git",
10
+ "url": "git+https://github.com/usetheokit/theokit-sdk.git",
11
11
  "directory": "packages/sdk-cache"
12
12
  },
13
13
  "type": "module",
@@ -38,21 +38,29 @@
38
38
  "LICENSE"
39
39
  ],
40
40
  "peerDependencies": {
41
- "@theokit/sdk": ">=4.0.0",
41
+ "@opentelemetry/api": "^1.9.0",
42
+ "@theokit/sdk": ">=4.54.0",
42
43
  "zod": "^4.0.0"
43
44
  },
45
+ "peerDependenciesMeta": {
46
+ "@opentelemetry/api": {
47
+ "optional": true
48
+ }
49
+ },
44
50
  "devDependencies": {
51
+ "@opentelemetry/api": "^1.9.1",
45
52
  "tsup": "^8.3.5",
46
53
  "typescript": "^5.7.2",
47
54
  "vitest": "^4.1.8",
48
55
  "zod": "^4.0.0",
49
- "@theokit/sdk": "4.43.0"
56
+ "@theokit/sdk": "4.59.0"
50
57
  },
51
58
  "publishConfig": {
59
+ "provenance": true,
52
60
  "access": "public"
53
61
  },
54
62
  "scripts": {
55
- "build": "tsup",
63
+ "build": "tsup && node ../../tools/repair-dts-imports.mjs .",
56
64
  "test": "vitest run",
57
65
  "typecheck": "tsc --noEmit"
58
66
  }