-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.58 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.58 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
{
"name": "@sehyun0518/crew-opencode",
"version": "1.0.0",
"description": "Multi-agent orchestration plugin for OpenCode. Coordinate specialized AI agents working together like a development team.",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/cli/index.js",
"bin": {
"crew-opencode": "dist/cli/index.js",
"crew": "dist/cli/index.js"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun build src/cli/index.ts --outdir dist/cli --target bun",
"build:bin": "bun run build:macos && bun run build:linux && bun run build:windows",
"build:macos": "bun build src/cli/index.ts --compile --outfile bin/crew-opencode-macos",
"build:macos-arm": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile bin/crew-opencode-macos-arm64",
"build:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile bin/crew-opencode-linux-x64",
"build:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile bin/crew-opencode-windows-x64.exe",
"test": "vitest run tests/core tests/sop",
"test:watch": "vitest tests/core tests/sop",
"test:fast": "vitest run tests/core tests/sop",
"test:full": "vitest run",
"test:slow": "vitest run tests/slow",
"test:coverage": "vitest run --coverage tests/core tests/sop",
"test:coverage:full": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"ai",
"agents",
"multi-agent",
"orchestration",
"cli",
"llm",
"crew"
],
"author": "sehyun0518 <https://github.com/sehyun0518>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sehyun0518/crew-opencode.git"
},
"bugs": {
"url": "https://github.com/sehyun0518/crew-opencode/issues"
},
"homepage": "https://github.com/sehyun0518/crew-opencode#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"templates",
"README.md"
],
"dependencies": {
"@anthropic-ai/sdk": "0.72.1",
"@google/generative-ai": "0.24.1",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"openai": "6.17.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"memfs": "4.56.10",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}