-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
{
"name": "@jayphen/coders",
"version": "1.4.1",
"description": "Spawn AI coding assistants (Claude, Gemini, Codex, OpenCode) in isolated tmux sessions with git worktree support",
"main": "skills/coders/coders.ts",
"types": "skills/coders/coders.d.ts",
"type": "module",
"author": "Jayphen",
"repository": {
"type": "git",
"url": "https://github.com/Jayphen/coders",
"directory": "packages/plugin"
},
"keywords": [
"claude-code",
"claude-code-plugin",
"ai",
"claude",
"gemini",
"codex",
"opencode",
"spawn",
"tmux",
"multi-agent"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/Jayphen/coders/issues"
},
"homepage": "https://github.com/Jayphen/coders#readme",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"build:go": "cd ../go && make build-all",
"copy:binaries": "mkdir -p bin/platform && cp ../go/bin/coders-darwin-arm64 bin/platform/ && cp ../go/bin/coders-darwin-amd64 bin/platform/ && cp ../go/bin/coders-linux-amd64 bin/platform/ && cp ../go/bin/coders-linux-arm64 bin/platform/",
"build": "npm run build:go && npm run copy:binaries",
"prepublishOnly": "npm run build"
},
"dependencies": {
"redis": "^5.0.0"
},
"devDependencies": {
"vitest": "^1.6.0",
"@vitest/ui": "^1.6.0"
},
"files": [
".claude-plugin",
"commands",
"skills",
"bin",
"README.md"
]
}