forked from dwgx/WindsurfAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.92 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
{
"name": "windsurf-api",
"version": "3.4.0",
"description": "Windsurf/Devin to OpenAI + Anthropic + Gemini compatible API proxy. Turns Devin's 100+ AI models (Claude, GPT, Gemini, DeepSeek, Grok, Qwen, Kimi, GLM, SWE) into multi-protocol API endpoints. Zero npm runtime dependencies (image codecs vendored under src/vendor).",
"type": "module",
"main": "src/index.js",
"bin": {
"windsurfapi": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node --import ./test/setup-env.mjs --test --test-force-exit test/*.test.js",
"test:shard": "node scripts/run-test-shard.mjs",
"test:release": "node --import ./test/setup-env.mjs --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:devin-connect": "node scripts/devin-connect-smoke.mjs",
"verify:devin-paid": "node scripts/devin-connect-paid-verify.mjs",
"calibrate:devin-image": "node scripts/devin-connect-image-calibrate.mjs",
"calibrate:devin": "node scripts/devin-connect-calibrate.mjs",
"login:devin": "node scripts/devin-connect-login.mjs",
"smoke:lsp-matrix": "node scripts/lsp-capacity-matrix.mjs",
"probe:web-search": "node scripts/web-search-direct-probe.mjs",
"sync:contributors": "node scripts/sync-docs-contributors.mjs",
"secret-scan": "node scripts/secret-scan.mjs",
"build:bundle": "esbuild src/index.js --bundle --platform=node --format=cjs --target=node22 --outfile=src/_bundle.cjs --external:node:* --define:import.meta.url=__WA_IMPORT_META_URL__ --banner:js=\"const __WA_IMPORT_META_URL__=require('node:url').pathToFileURL(__filename).href;\"",
"build:exe": "npm run build:bundle && pkg src/_bundle.cjs --config package.json --targets node22-win-x64 --output dist-windows/windsurfapi.exe"
},
"pkg": {
"assets": [
"src/dashboard/index.html",
"src/dashboard/index-sketch.html",
"src/dashboard/i18n/*.json",
"src/dashboard/data/*.json",
"src/data/*.json",
"package.json"
],
"targets": ["node22-win-x64"],
"outputPath": "dist-windows"
},
"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"
]
}