-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "glmproxy",
"version": "2.6.0",
"description": "Local OpenAI- & Anthropic-compatible proxy for AutoClaw's Zhipu GLM-5.3 / GLM-5 / DeepSeek models",
"main": "openai.js",
"type": "module",
"bin": {
"glmproxy": "bin/cli.js",
"glm-proxy": "bin/cli.js"
},
"files": [
"openai.js",
"anthropic.js",
"main.js",
"bin/",
"lib/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/cli.js",
"anthropic": "node anthropic.js",
"test": "node tests/pen-test-p1.mjs && node tests/pen-test-p2.mjs && node tests/taxonomy.mjs && node tests/pen-test-p3.mjs && node tests/pen-test-p4.mjs && node tests/pen-test-p5.mjs && node tests/catalog-refresh.mjs"
},
"keywords": [
"glm",
"glm-5",
"glm-5.3",
"glm-5-turbo",
"zhipu",
"zai",
"autoclaw",
"openai",
"openai-compatible",
"anthropic",
"proxy",
"gateway",
"opencode",
"claude-code",
"deepseek",
"local",
"llm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eequaled/GLM_proxy.git"
},
"homepage": "https://github.com/eequaled/GLM_proxy",
"bugs": {
"url": "https://github.com/eequaled/GLM_proxy/issues"
},
"publishConfig": {
"access": "public"
}
}