-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.21 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": "cursor2api",
"version": "0.1.0",
"private": true,
"description": "Use your Cursor subscription as an OpenAI-compatible API. Speaks Cursor's agent.v1 protocol directly — real tool_calls, streaming, no cursor-agent CLI subprocess.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"probe": "node scripts/probe.mjs",
"build:bundle": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.cjs",
"login": "node scripts/login.mjs",
"import-local": "node scripts/import-local-token.mjs"
},
"dependencies": {
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"esbuild": "^0.24.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"cursor",
"cursor2api",
"openai-compatible",
"proxy",
"llm",
"api-gateway",
"tool-calling"
],
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/AstroQore/cursor2api.git"
}
}