api-key-lb 1.0.3 → 1.0.4

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.
@@ -110,7 +110,7 @@ function cmdStart() {
110
110
  };
111
111
 
112
112
  console.log(`Starting api-key-lb on port ${port}...`);
113
- import(path.join(__dirname, 'proxy.mjs'));
113
+ import(path.join(__dirname, 'src', 'proxy.mjs'));
114
114
  }
115
115
 
116
116
  function cmdStop() {
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "api-key-lb",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "Transparent API key load balancer with session-aware sticky routing. Works with any OpenAI-compatible API provider.",
6
6
  "main": "src/proxy.mjs",
7
7
  "bin": {
8
- "api-key-lb": "./src/cli.js"
8
+ "api-key-lb": "./cli.js"
9
9
  },
10
10
  "files": [
11
11
  "src/",
12
+ "cli.js",
12
13
  "README.md"
13
14
  ],
14
15
  "scripts": {