-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1007 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1007 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
{
"name": "windsurf-api",
"version": "2.0.7",
"description": "Windsurf to OpenAI + Anthropic compatible API proxy. Turns Windsurf's 107 AI models (Claude, GPT, Gemini, DeepSeek, Grok, Qwen, Kimi, GLM, SWE) into dual-protocol API endpoints. Zero npm deps.",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node --test test/*.test.js"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"author": "dwgx <somdhmtb@gmail.com> (https://github.com/dwgx)",
"homepage": "https://dwgx.github.io/WindsurfAPI/",
"repository": {
"type": "git",
"url": "git+https://github.com/dwgx/WindsurfAPI.git"
},
"bugs": {
"url": "https://github.com/dwgx/WindsurfAPI/issues"
},
"keywords": [
"windsurf",
"codeium",
"openai",
"anthropic",
"claude",
"gpt",
"gemini",
"api-proxy",
"llm-gateway",
"reverse-engineering",
"zero-dependency"
]
}