forked from standardagents/composer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "api-for-cursor",
"version": "0.1.0",
"private": false,
"type": "module",
"description": "OpenAI-compatible Chat Completions and Responses API for Cursor.",
"repository": {
"type": "git",
"url": "git+https://github.com/standardagents/composer-api.git"
},
"homepage": "https://github.com/standardagents/composer-api#readme",
"bugs": {
"url": "https://github.com/standardagents/composer-api/issues"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0",
"sdk:opencode-bridge": "node scripts/cursor-sdk-local-agent-bridge.mjs",
"sdk:responses": "node scripts/cursor-sdk-responses-proxy.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"deploy": "vite build && wrangler deploy",
"db:migrate:local": "wrangler d1 migrations apply composer-api --local",
"db:migrate:remote": "wrangler d1 migrations apply composer-api --remote"
},
"keywords": [
"cursor",
"composer",
"openai",
"chat-completions",
"responses-api",
"cloudflare-workers"
],
"license": "MIT",
"dependencies": {
"@cloudflare/containers": "^0.3.4",
"@cursor/sdk": "^1.0.13",
"lucide": "^0.557.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.37.2",
"@cloudflare/workers-types": "^4.20260520.0",
"typescript": "^5.9.3",
"vite": "^8.0.13",
"vitest": "^4.0.15",
"wrangler": "^4.93.0"
}
}