-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 770 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 770 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
{
"name": "multiagent",
"version": "1.0.7",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly && cp -r src/skills/builtin dist/skills/ && cp -r src/agents/builtin dist/agents/",
"dev": "bun build src/index.ts --outdir dist --target bun --format esm --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.24",
"@opencode-ai/sdk": "^1.2.24"
},
"devDependencies": {
"typescript": "^5.7.3",
"bun-types": "^1.3.10"
}
}