-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "opencode-mesa",
"version": "3.0.0",
"description": "OpenCode plugin for structured discussion tables with specialized AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22.5.0",
"bun": ">=1.3.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && rm -rf dist/catalog/agency-agents && mkdir -p dist/catalog/agency-agents && cp -r src/catalog/agency-agents/. dist/catalog/agency-agents/ || true",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:node": "node --experimental-sqlite node_modules/vitest/vitest.mjs run",
"test:bun": "bun run vitest run",
"test:smoke": "bash scripts/dual-runtime-smoke.sh",
"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"
}
}