-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "cursor-agent-api-proxy",
"version": "1.5.3",
"description": "Use your Cursor subscription with any OpenAI-compatible client. Wraps Cursor CLI (agent) as an OpenAI-compatible API server.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cursor-agent-api": "dist/server/standalone.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server/standalone.js",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"cursor",
"cursor-cli",
"agent",
"openai-compatible",
"api-server",
"openclaw",
"llm",
"ai",
"proxy"
],
"license": "MIT",
"dependencies": {
"express": "^4.21.2",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20"
}
}