opencode-qoder-bridge 0.1.9 → 0.1.11

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/package.json CHANGED
@@ -1,120 +1,121 @@
1
- {
2
- "name": "opencode-qoder-bridge",
3
- "version": "0.1.9",
4
- "description": "Qoder provider plugin for OpenCode powered by the official Qoder Agent SDK, with streaming, tools, MCP, sessions, multimodal input, and quota tracking.",
5
- "keywords": [
6
- "opencode",
7
- "opencode-plugin",
8
- "qoder",
9
- "qoder-ai",
10
- "qoder-provider",
11
- "qoder-agent-sdk",
12
- "qoder-cli",
13
- "ai-coding",
14
- "coding-agent",
15
- "mcp"
16
- ],
17
- "author": "Naoufal EL BANI",
18
- "type": "module",
19
- "license": "MIT",
20
- "homepage": "https://github.com/naoufalelbani/opencode-qoder-bridge#readme",
21
- "bugs": {
22
- "url": "https://github.com/naoufalelbani/opencode-qoder-bridge/issues"
23
- },
24
- "repository": {
25
- "type": "git",
26
- "url": "git+https://github.com/naoufalelbani/opencode-qoder-bridge.git"
27
- },
28
- "publishConfig": {
29
- "access": "public"
30
- },
31
- "main": "dist/index.js",
32
- "types": "dist/index.d.ts",
33
- "bin": {
34
- "opencode-qoder-bridge": "bin/statusline.mjs",
35
- "qoder-usage": "bin/usage.mjs"
36
- },
37
- "files": [
38
- "dist",
39
- "bin",
40
- "CHANGELOG.md",
41
- "README.md",
42
- "LICENSE",
43
- "RELEASING.md",
44
- "SECURITY.md",
45
- "THIRD_PARTY_NOTICES.md"
46
- ],
47
- "exports": {
48
- ".": {
49
- "types": "./dist/index.d.ts",
50
- "default": "./dist/index.js"
51
- },
52
- "./provider": {
53
- "types": "./dist/provider.d.ts",
54
- "default": "./dist/provider.js"
55
- },
56
- "./tui": {
57
- "types": "./dist/tui.d.ts",
58
- "default": "./dist/tui.js"
59
- },
60
- "./errors": {
61
- "types": "./dist/errors.d.ts",
62
- "default": "./dist/errors.js"
63
- }
64
- },
65
- "scripts": {
66
- "build": "tsc -p tsconfig.json",
1
+ {
2
+ "name": "opencode-qoder-bridge",
3
+ "version": "0.1.11",
4
+ "description": "Qoder provider plugin for OpenCode powered by the official Qoder Agent SDK, with streaming, tools, MCP, sessions, multimodal input, and quota tracking.",
5
+ "keywords": [
6
+ "opencode",
7
+ "opencode-plugin",
8
+ "qoder",
9
+ "qoder-ai",
10
+ "qoder-provider",
11
+ "qoder-agent-sdk",
12
+ "qoder-cli",
13
+ "ai-coding",
14
+ "coding-agent",
15
+ "mcp"
16
+ ],
17
+ "author": "Naoufal EL BANI",
18
+ "type": "module",
19
+ "license": "MIT",
20
+ "homepage": "https://github.com/naoufalelbani/opencode-qoder-bridge#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/naoufalelbani/opencode-qoder-bridge/issues"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/naoufalelbani/opencode-qoder-bridge.git"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "main": "dist/index.js",
32
+ "types": "dist/index.d.ts",
33
+ "bin": {
34
+ "opencode-qoder-bridge": "bin/statusline.mjs",
35
+ "qoder-usage": "bin/usage.mjs"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "bin",
40
+ "CHANGELOG.md",
41
+ "README.md",
42
+ "LICENSE",
43
+ "RELEASING.md",
44
+ "SECURITY.md",
45
+ "THIRD_PARTY_NOTICES.md"
46
+ ],
47
+ "exports": {
48
+ ".": {
49
+ "types": "./dist/index.d.ts",
50
+ "default": "./dist/index.js"
51
+ },
52
+ "./provider": {
53
+ "types": "./dist/provider.d.ts",
54
+ "default": "./dist/provider.js"
55
+ },
56
+ "./tui": {
57
+ "types": "./dist/tui.d.ts",
58
+ "default": "./dist/tui.js"
59
+ },
60
+ "./errors": {
61
+ "types": "./dist/errors.d.ts",
62
+ "default": "./dist/errors.js"
63
+ }
64
+ },
65
+ "scripts": {
66
+ "build": "tsc -p tsconfig.json",
67
67
  "typecheck": "tsc -p tsconfig.json --noEmit",
68
68
  "test": "npm run build && node --test test/*.test.mjs",
69
+ "test:stress": "npm run build && node --test test/stress.test.mjs",
69
70
  "test:e2e": "npm run build && node --test test/e2e.test.mjs",
70
- "audit": "npm audit --audit-level=low",
71
- "check": "npm run typecheck && npm test && npm run audit",
72
- "prepack": "npm run build",
73
- "prepublishOnly": "npm run check"
74
- },
75
- "dependencies": {
76
- "@opencode-ai/plugin": "1.18.19",
77
- "@qoder-ai/qoder-agent-sdk": "1.0.30",
78
- "jsonc-parser": "^3.3.1",
79
- "zod": "^3.25.0"
80
- },
81
- "devDependencies": {
82
- "@ai-sdk/provider": "^3.0.14",
83
- "@opentui/solid": "0.5.4",
84
- "@types/node": "^22.10.0",
85
- "solid-js": "1.9.12",
86
- "typescript": "^5.7.0"
87
- },
88
- "peerDependencies": {
89
- "@opentui/solid": ">=0.4.5",
90
- "solid-js": ">=1.9.12"
91
- },
92
- "peerDependenciesMeta": {
93
- "@opentui/solid": {
94
- "optional": true
95
- },
96
- "solid-js": {
97
- "optional": true
98
- }
99
- },
100
- "overrides": {
101
- "@babel/core": "8.0.1",
102
- "@hono/node-server": "2.0.11",
103
- "@modelcontextprotocol/sdk": "1.30.0",
104
- "brace-expansion": "5.0.9",
105
- "fast-uri": "4.1.2",
106
- "glob": "13.0.6",
107
- "hono": "4.13.3",
108
- "minimatch": "10.2.6"
109
- },
110
- "engines": {
111
- "node": "^22.22.2 || ^24.15.0 || >=26.0.0"
112
- },
113
- "allowScripts": {
114
- "@qoder-ai/qoder-agent-sdk@1.0.30": true,
115
- "msgpackr-extract@3.0.4": true
116
- },
117
- "directories": {
118
- "test": "test"
119
- }
120
- }
71
+ "audit": "npm audit --audit-level=low",
72
+ "check": "npm run typecheck && npm test && npm run audit",
73
+ "prepack": "npm run build",
74
+ "prepublishOnly": "npm run check"
75
+ },
76
+ "dependencies": {
77
+ "@opencode-ai/plugin": "1.18.19",
78
+ "@qoder-ai/qoder-agent-sdk": "1.0.31",
79
+ "jsonc-parser": "^3.3.1",
80
+ "zod": "^3.25.0"
81
+ },
82
+ "devDependencies": {
83
+ "@ai-sdk/provider": "^3.0.14",
84
+ "@opentui/solid": "0.5.4",
85
+ "@types/node": "^22.10.0",
86
+ "solid-js": "1.9.12",
87
+ "typescript": "^5.7.0"
88
+ },
89
+ "peerDependencies": {
90
+ "@opentui/solid": ">=0.4.5",
91
+ "solid-js": ">=1.9.12"
92
+ },
93
+ "peerDependenciesMeta": {
94
+ "@opentui/solid": {
95
+ "optional": true
96
+ },
97
+ "solid-js": {
98
+ "optional": true
99
+ }
100
+ },
101
+ "overrides": {
102
+ "@babel/core": "8.0.1",
103
+ "@hono/node-server": "2.0.11",
104
+ "@modelcontextprotocol/sdk": "1.30.0",
105
+ "brace-expansion": "5.0.9",
106
+ "fast-uri": "4.1.2",
107
+ "glob": "13.0.6",
108
+ "hono": "4.13.3",
109
+ "minimatch": "10.2.6"
110
+ },
111
+ "engines": {
112
+ "node": "^22.22.2 || ^24.15.0 || >=26.0.0"
113
+ },
114
+ "allowScripts": {
115
+ "@qoder-ai/qoder-agent-sdk@1.0.31": true,
116
+ "msgpackr-extract@3.0.4": true
117
+ },
118
+ "directories": {
119
+ "test": "test"
120
+ }
121
+ }