forked from rynfar/meridian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.08 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@rynfar/meridian",
"version": "1.34.1",
"description": "Local Anthropic API powered by your Claude Max subscription. One subscription, every agent.",
"type": "module",
"main": "./dist/server.js",
"types": "./dist/proxy/server.d.ts",
"bin": {
"meridian": "./dist/cli.js",
"claude-max-proxy": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/proxy/server.d.ts",
"default": "./dist/server.js"
}
},
"engines": {
"node": ">=22"
},
"scripts": {
"start": "./bin/claude-proxy-supervisor.sh",
"proxy": "./bin/claude-proxy-supervisor.sh",
"build": "rm -rf dist && bun build bin/cli.ts src/proxy/server.ts --outdir dist --target node --splitting --external @anthropic-ai/claude-agent-sdk --entry-naming '[name].js' && tsc -p tsconfig.build.json",
"postbuild": "node --check dist/cli.js && node --check dist/server.js && test -f dist/proxy/server.d.ts",
"prepublishOnly": "bun run build",
"test": "bun test --path-ignore-patterns '**/*session-store*' --path-ignore-patterns '**/*proxy-async-ops*' --path-ignore-patterns '**/*proxy-extra-usage-fallback*' --path-ignore-patterns '**/*models-auth-status*' --path-ignore-patterns '**/*proxy-context-usage-store*' --path-ignore-patterns '**/*proxy-passthrough-thinking*' --path-ignore-patterns '**/*profile-switch-integration*' --path-ignore-patterns '**/*session-recovery*' && bun test src/__tests__/profile-switch-integration.test.ts && bun test src/__tests__/proxy-extra-usage-fallback.test.ts && bun test src/__tests__/proxy-async-ops.test.ts && bun test src/__tests__/proxy-session-store.test.ts && bun test src/__tests__/session-store-pruning.test.ts && bun test src/__tests__/proxy-session-store-locking.test.ts && bun test src/__tests__/proxy-context-usage-store.test.ts && bun test src/__tests__/models-auth-status.test.ts && bun test src/__tests__/proxy-passthrough-thinking.test.ts && bun test src/__tests__/proxy-session-recovery.test.ts",
"typecheck": "tsc --noEmit",
"proxy:direct": "bun run ./bin/cli.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.89"
},
"devDependencies": {
"@hono/node-server": "^1.19.11",
"@types/bun": "^1.3.11",
"@types/node": "^22.0.0",
"glob": "^13.0.0",
"hono": "^4.11.4",
"typescript": "^5.8.2"
},
"files": [
"dist/",
"plugin/",
"assets/",
"README.md"
],
"keywords": [
"meridian",
"claude",
"claude-max",
"claude-code",
"anthropic",
"anthropic-api",
"claude-agent-sdk",
"ai-coding",
"ai-assistant",
"proxy",
"opencode",
"cline",
"aider",
"crush",
"charmbracelet",
"droid",
"factory-ai",
"pi-coding-agent",
"open-webui",
"llm",
"coding-assistant",
"opencode-claude-max-proxy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rynfar/meridian.git"
},
"homepage": "https://github.com/rynfar/meridian#readme",
"bugs": {
"url": "https://github.com/rynfar/meridian/issues"
},
"author": "rynfar",
"license": "MIT",
"private": false,
"packageManager": "bun@1.3.11"
}