-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 821 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 821 Bytes
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
{
"name": "opencode-mesa",
"version": "2.2.0",
"description": "OpenCode plugin for structured discussion tables with specialized AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && mkdir -p dist/catalog && cp -r src/catalog/agency-agents dist/catalog/agency-agents",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"dev": "tsc --watch",
"setup:agents": "node src/setup/generate-agents.js"
},
"dependencies": {
"@opencode-ai/plugin": "latest",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "latest",
"vitest": "^4.1.7"
}
}