forked from code-yeongyu/oh-my-openagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "opencode-matrixx",
"version": "2.5.0",
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"bin": {
"opencode-matrixx": "dist/cli.js",
"matrixx": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schema.json": "./dist/matrixx.schema.json"
},
"scripts": {
"build": "bun run build:plugin && bun run build:cli && tsc --emitDeclarationOnly && bun run build:schema",
"build:plugin": "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi",
"build:cli": "bun build src/cli/index.ts --outfile dist/cli.js --target bun --format esm",
"build:schema": "bun run script/build-schema.ts",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"ci": "bash script/run-ci.sh",
"test": "bash script/run-ci.sh",
"matrixx": "bun run bin/matrixx.ts"
},
"keywords": [
"opencode",
"opencode-plugin",
"claude",
"claude-code",
"anthropic",
"openai",
"gemini",
"ai",
"llm",
"multi-agent",
"agent-orchestration",
"coding-assistant",
"ai-coding",
"vibe-coding",
"agentic",
"autonomous-agents",
"plugin"
],
"author": "klpanagi",
"license": "SUL-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/klpanagi/opencode-matrixx.git"
},
"bugs": {
"url": "https://github.com/klpanagi/opencode-matrixx/issues"
},
"homepage": "https://github.com/klpanagi/opencode-matrixx#readme",
"dependencies": {
"@ast-grep/cli": "^0.40.0",
"@ast-grep/napi": "^0.40.0",
"@code-yeongyu/comment-checker": "^0.6.1",
"@cucumber/gherkin": "^34.0.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"@opencode-ai/plugin": "1.3.15",
"@opencode-ai/sdk": "1.3.15",
"js-yaml": "^4.1.1",
"jsonc-parser": "^3.3.1",
"picomatch": "^4.0.2",
"vscode-jsonrpc": "^8.2.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@cucumber/cucumber": "^13.0.0",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chai": "^5.2.3",
"@types/js-yaml": "^4.0.9",
"@types/picomatch": "^3.0.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"bun-types": "1.3.6",
"chai": "^6.2.2",
"happy-dom": "^15.11.7",
"jsdom": "^29.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsx": "^4.23.0",
"typescript": "^5.7.3"
},
"trustedDependencies": [
"@ast-grep/cli",
"@ast-grep/napi",
"@code-yeongyu/comment-checker"
]
}