-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.15 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
68
69
70
71
72
73
74
75
{
"name": "windsurf-api",
"version": "3.9.21",
"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 scripts/run-test-shard.mjs 0 1",
"mutate": "node scripts/mutate-verify.mjs",
"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",
"build:exe:macos": "npm run build:bundle && pkg src/_bundle.cjs --config package.json --targets node22-macos-arm64 --output dist-macos/windsurfapi-macos-arm64",
"build:exe:macos-x64": "npm run build:bundle && pkg src/_bundle.cjs --config package.json --targets node22-macos-x64 --output dist-macos/windsurfapi-macos-x64",
"smoke:exe": "node scripts/exe-boot-smoke.mjs"
},
"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",
"node22-macos-arm64",
"node22-macos-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"
]
}