forked from Nomadcxx/opencode-cursor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.52 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.52 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
76
77
78
{
"name": "@rama_nigg/open-cursor",
"version": "2.3.20",
"description": "No prompt limits. No broken streams. Full thinking + tool support. Your Cursor subscription, properly integrated.",
"type": "module",
"main": "dist/plugin-entry.js",
"module": "src/plugin-entry.ts",
"scripts": {
"build": "bun build ./src/index.ts ./src/plugin-entry.ts ./src/cli/discover.ts ./src/cli/opencode-cursor.ts ./src/cli/mcptool.ts ./src/proxy/standalone-server.ts --outdir ./dist --target node --external @opencode-ai/plugin --external zod",
"typecheck": "tsc --noEmit",
"dev": "bun build ./src/index.ts ./src/plugin-entry.ts ./src/cli/discover.ts ./src/cli/opencode-cursor.ts ./src/cli/mcptool.ts ./src/proxy/standalone-server.ts --outdir ./dist --target node --watch --external @opencode-ai/plugin --external zod",
"proxy": "bun run src/proxy/standalone-server.ts",
"proxy:build": "bun build ./src/proxy/standalone-server.ts --outdir ./dist --target node",
"lint": "tsc --noEmit",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:ci:unit": "bun test tests/tools/defaults.test.ts tests/tools/executor-chain.test.ts tests/tools/sdk-executor.test.ts tests/tools/mcp-executor.test.ts tests/tools/skills.test.ts tests/tools/registry.test.ts tests/unit/cli/model-discovery.test.ts tests/unit/proxy/prompt-builder.test.ts tests/unit/proxy/tool-loop.test.ts tests/unit/provider-boundary.test.ts tests/unit/provider-runtime-interception.test.ts tests/unit/provider-tool-schema-compat.test.ts tests/unit/provider-tool-loop-guard.test.ts tests/unit/plugin.test.ts tests/unit/plugin-tools-hook.test.ts tests/unit/plugin-tool-resolution.test.ts tests/unit/plugin-config.test.ts tests/unit/auth.test.ts tests/unit/streaming/line-buffer.test.ts tests/unit/streaming/parser.test.ts tests/unit/streaming/types.test.ts tests/unit/streaming/delta-tracker.test.ts tests/competitive/edge.test.ts",
"test:ci:integration": "bun test tests/integration/comprehensive.test.ts tests/integration/tools-router.integration.test.ts tests/integration/stream-router.integration.test.ts tests/integration/opencode-loop.integration.test.ts",
"discover": "bun run src/cli/discover.ts",
"prepublishOnly": "bun run build"
},
"bin": {
"open-cursor": "dist/cli/opencode-cursor.js",
"cursor-discover": "dist/cli/discover.js",
"mcptool": "dist/cli/mcptool.js",
"cursor-proxy": "dist/proxy/standalone-server.js"
},
"exports": {
".": {
"bun": "./src/plugin-entry.ts",
"import": "./dist/plugin-entry.js",
"default": "./dist/plugin-entry.js"
},
"./lib": {
"bun": "./src/index.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@opencode-ai/plugin": "1.1.53",
"@opencode-ai/sdk": "1.1.53",
"ai": "^6.0.55",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
},
"peerDependencies": {
"@opencode-ai/sdk": "^1.0.0",
"bun-types": "^1.1.0"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Nomadcxx/opencode-cursor.git"
},
"homepage": "https://github.com/Nomadcxx/opencode-cursor#readme",
"bugs": {
"url": "https://github.com/Nomadcxx/opencode-cursor/issues"
},
"keywords": [
"opencode",
"cursor",
"ai",
"streaming",
"plugin",
"cursor-agent"
],
"author": "Nomadcxx"
}