-
Notifications
You must be signed in to change notification settings - Fork 593
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.65 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
{
"name": "windsurf-api",
"version": "2.0.145",
"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-force-exit test/*.test.js",
"test:shard": "node scripts/run-test-shard.mjs",
"test:release": "node --test --test-force-exit test/cache.test.js test/dashboard-api.test.js test/dashboard-syntax.test.js test/native-bridge-docs.test.js test/proto-trace.test.js test/secret-scan.test.js test/test-shard-script.test.js test/release-workflow.test.js test/version.test.js",
"smoke:native-bridge": "node scripts/native-bridge-smoke.mjs",
"smoke:special-agent": "node scripts/special-agent-smoke.mjs",
"smoke:lsp-matrix": "node scripts/lsp-capacity-matrix.mjs",
"probe:web-search": "node scripts/web-search-direct-probe.mjs",
"secret-scan": "node scripts/secret-scan.mjs"
},
"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"
]
}