@rama_nigg/open-cursor 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +28 -0
- package/README.md +347 -0
- package/dist/cli/discover.js +202 -0
- package/dist/cli/opencode-cursor.js +430 -0
- package/dist/index.js +19583 -0
- package/dist/plugin-entry.js +18936 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rama_nigg/open-cursor",
|
|
3
|
+
"version": "2.1.2",
|
|
4
|
+
"description": "No prompt limits. No broken streams. Full thinking + tool support. Your Cursor subscription, properly integrated.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "bun build ./src/index.ts ./src/plugin-entry.ts ./src/cli/discover.ts ./src/cli/opencode-cursor.ts --outdir ./dist --target node",
|
|
9
|
+
"dev": "bun build ./src/index.ts ./src/plugin-entry.ts ./src/cli/discover.ts ./src/cli/opencode-cursor.ts --outdir ./dist --target node --watch",
|
|
10
|
+
"test": "bun test",
|
|
11
|
+
"test:unit": "bun test tests/unit",
|
|
12
|
+
"test:integration": "bun test tests/integration",
|
|
13
|
+
"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",
|
|
14
|
+
"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",
|
|
15
|
+
"discover": "bun run src/cli/discover.ts",
|
|
16
|
+
"prepublishOnly": "bun run build"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"open-cursor": "dist/cli/opencode-cursor.js",
|
|
20
|
+
"cursor-discover": "dist/cli/discover.js"
|
|
21
|
+
},
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"ai": "^6.0.55",
|
|
30
|
+
"@opencode-ai/plugin": "1.1.53",
|
|
31
|
+
"@opencode-ai/sdk": "1.1.53",
|
|
32
|
+
"strip-ansi": "^7.1.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^22.0.0",
|
|
36
|
+
"typescript": "^5.8.0"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@opencode-ai/sdk": "^1.0.0",
|
|
40
|
+
"bun-types": "^1.1.0"
|
|
41
|
+
},
|
|
42
|
+
"license": "ISC",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/Nomadcxx/opencode-cursor.git"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/Nomadcxx/opencode-cursor#readme",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/Nomadcxx/opencode-cursor/issues"
|
|
50
|
+
},
|
|
51
|
+
"keywords": [
|
|
52
|
+
"opencode",
|
|
53
|
+
"cursor",
|
|
54
|
+
"ai",
|
|
55
|
+
"streaming",
|
|
56
|
+
"plugin",
|
|
57
|
+
"cursor-agent"
|
|
58
|
+
],
|
|
59
|
+
"author": "Nomadcxx"
|
|
60
|
+
}
|