-
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.14 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.14 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": "api-for-cursor",
"version": "0.1.0",
"private": false,
"description": "Local OpenAI-compatible Chat Completions and Responses API for Cursor Composer.",
"keywords": [
"bun",
"chat-completions",
"composer",
"cursor",
"openai",
"responses-api"
],
"homepage": "https://github.com/standardagents/composer-api#readme",
"bugs": {
"url": "https://github.com/standardagents/composer-api/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/standardagents/composer-api.git"
},
"type": "module",
"scripts": {
"server": "bun run server.ts",
"start": "bun run server.ts",
"sdk:opencode-bridge": "bun scripts/cursor-sdk-local-agent-bridge.mjs",
"test": "vitest run",
"test:watch": "vitest",
"compile": "tsc --noEmit",
"format": "oxfmt",
"lint": "oxlint --fix",
"check": "bun --parallel compile 'oxfmt --check' 'oxlint'"
},
"dependencies": {
"@cursor/sdk": "1.0.23"
},
"devDependencies": {
"@types/bun": "1.3.14",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}