-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 903 Bytes
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
{
"name": "glm-enhanced-proxy",
"version": "1.0.0",
"description": "HTTP proxy that transforms Anthropic Messages API requests to Z.ai GLM-4.7 API format with thinking/reasoning, tool execution, and streaming support",
"type": "module",
"main": "src/index.js",
"bin": {
"ccglm": "src/cli.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "LOG_LEVEL=error node --test 'src/*.test.js' 'src/**/*.test.js'"
},
"keywords": [
"llm",
"proxy",
"anthropic",
"glm",
"openai",
"claude",
"z.ai",
"mcp",
"api-proxy"
],
"author": "SIS LTD",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dejay2/glmproxy"
},
"files": [
"src/**/*.js",
"README.md"
],
"dependencies": {
"dotenv": "^17.2.3"
}
}