-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "@switchyardhq/switchyard",
"version": "0.4.0",
"description": "Manage multiple AI coding agents working on the same git repository: isolated worktrees per agent, collision detection before merge, safe cleanup.",
"keywords": [
"git",
"worktree",
"ai-agents",
"claude-code",
"codex",
"cursor",
"cli",
"developer-tools"
],
"license": "MIT",
"author": "Mohammed Alkindi <alkndymhmd692@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/MohammedAlkindi/Switchyard.git"
},
"bugs": "https://github.com/MohammedAlkindi/Switchyard/issues",
"homepage": "https://switchyardhq.vercel.app",
"type": "module",
"bin": {
"fleet": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist",
"schema",
"skills"
],
"engines": {
"node": ">=18.17"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run typecheck && npm test"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/node": "^22.5.0",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.9.0",
"tmp": "^0.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vitest": "^2.1.0"
}
}