@relayplane/proxy 1.9.14 → 1.9.15
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/LICENSE +21 -0
- package/dist/cli.js +0 -0
- package/dist/standalone-proxy.d.ts.map +1 -1
- package/dist/standalone-proxy.js +99 -5
- package/dist/standalone-proxy.js.map +1 -1
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relayplane/proxy",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.15",
|
|
4
4
|
"description": "Open source cost intelligence proxy for AI agents. Cut LLM costs ~80% with smart model routing. Dashboard, policy engine, 11 providers. MIT licensed.",
|
|
5
5
|
"homepage": "https://relayplane.com",
|
|
6
6
|
"repository": {
|
|
@@ -13,17 +13,6 @@
|
|
|
13
13
|
"relayplane": "dist/cli.js",
|
|
14
14
|
"relayplane-proxy": "dist/cli.js"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsc",
|
|
18
|
-
"dev": "tsc --watch",
|
|
19
|
-
"start": "node dist/cli.js",
|
|
20
|
-
"test": "vitest run",
|
|
21
|
-
"test:watch": "vitest",
|
|
22
|
-
"harness:v1.7": "bash ./scripts/v1.7-harness.sh",
|
|
23
|
-
"prepublishOnly": "npm run build",
|
|
24
|
-
"test:integration": "vitest run __tests__/integration/",
|
|
25
|
-
"test:e2e": "vitest run test/e2e/"
|
|
26
|
-
},
|
|
27
16
|
"keywords": [
|
|
28
17
|
"relayplane",
|
|
29
18
|
"ai",
|
|
@@ -67,5 +56,15 @@
|
|
|
67
56
|
"dist",
|
|
68
57
|
"assets",
|
|
69
58
|
"README.md"
|
|
70
|
-
]
|
|
71
|
-
|
|
59
|
+
],
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsc",
|
|
62
|
+
"dev": "tsc --watch",
|
|
63
|
+
"start": "node dist/cli.js",
|
|
64
|
+
"test": "vitest run",
|
|
65
|
+
"test:watch": "vitest",
|
|
66
|
+
"harness:v1.7": "bash ./scripts/v1.7-harness.sh",
|
|
67
|
+
"test:integration": "vitest run __tests__/integration/",
|
|
68
|
+
"test:e2e": "vitest run test/e2e/"
|
|
69
|
+
}
|
|
70
|
+
}
|