-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "corvus-ai",
"version": "0.7.4",
"description": "Corvus AI agent suite for OpenCode — multi-agent orchestration with specialized agents, commands, and skills",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"corvus-ai": "bin/cli.mjs"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"agent",
"command",
"skill",
"AGENTS.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node && bun x tsc --emitDeclarationOnly --outDir dist",
"typecheck": "bun x tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"ai-agents",
"corvus",
"multi-agent"
],
"author": "Nacho F. Lizaur",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NachoFLizaur/corvus.git"
},
"homepage": "https://github.com/NachoFLizaur/corvus",
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.0.0"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}