-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@relayplane/proxy",
"version": "1.8.26",
"description": "Open source cost intelligence proxy for AI agents. Cut LLM costs ~80% with smart model routing. Dashboard, policy engine, 11 providers. MIT licensed.",
"homepage": "https://relayplane.com",
"repository": {
"type": "git",
"url": "https://github.com/RelayPlane/proxy"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"relayplane": "dist/cli.js",
"relayplane-proxy": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"harness:v1.7": "bash ./scripts/v1.7-harness.sh",
"prepublishOnly": "npm run build",
"test:integration": "vitest run __tests__/integration/"
},
"keywords": [
"relayplane",
"ai",
"llm",
"proxy",
"routing",
"anthropic",
"openai",
"gemini",
"openclaw",
"observability",
"agent-ops"
],
"author": "RelayPlane",
"license": "MIT",
"dependencies": {
"@relayplane/core": "^0.1.4",
"fastest-levenshtein": "^1.0.16",
"@relayplane/learning-engine": "^0.1.0",
"better-sqlite3": "^11.10.0"
},
"optionalDependencies": {
"@relayplane/auth-gate": "^0.1.0",
"@relayplane/explainability": "^0.1.0",
"@relayplane/ledger": "^0.1.0",
"@relayplane/policy-engine": "^0.1.0",
"@relayplane/routing-engine": "^0.1.0",
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"assets",
"README.md"
]
}