@splashcodex/api-key-manager 1.0.0 → 3.0.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": "@splashcodex/api-key-manager",
3
- "version": "1.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "Universal API Key Rotation System for rate-limited APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "build": "tsc",
13
- "test": "ts-node tests/index.test.ts",
13
+ "test": "jest --verbose",
14
14
  "prepublishOnly": "npm run build"
15
15
  },
16
16
  "keywords": [
@@ -19,13 +19,22 @@
19
19
  "rotation",
20
20
  "gemini",
21
21
  "rate-limit",
22
- "circuit-breaker"
22
+ "circuit-breaker",
23
+ "resilience",
24
+ "fallback",
25
+ "timeout",
26
+ "retry",
27
+ "gateway",
28
+ "load-balancing"
23
29
  ],
24
30
  "author": "Antigravity",
25
31
  "license": "ISC",
26
32
  "devDependencies": {
27
- "typescript": "^5.3.3",
33
+ "@types/jest": "^30.0.0",
34
+ "@types/node": "^20.10.5",
35
+ "jest": "^29.7.0",
36
+ "ts-jest": "^29.4.6",
28
37
  "ts-node": "^10.9.2",
29
- "@types/node": "^20.10.5"
38
+ "typescript": "^5.3.3"
30
39
  }
31
40
  }