-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1004 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1004 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@brickhouse-tech/sync-agents",
"version": "0.1.16",
"description": "Simple scripts to DRY up common agent interactions across multiple LLM providers.",
"keywords": [
"agents",
"claude",
"sync",
"codex",
"gpt",
"windsurf"
],
"homepage": "https://github.com/brickhouse-tech/sync-agents#readme",
"bugs": {
"url": "https://github.com/brickhouse-tech/sync-agents/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brickhouse-tech/sync-agents.git"
},
"author": "Nicholas McCready",
"bin": {
"sync-agents": "src/sh/sync-agents.sh"
},
"files": [
"src/**/*"
],
"overrides": {
"file-type": ">=22",
"picomatch": ">=4.0.4"
},
"scripts": {
"lint": "shellcheck src/sh/*.sh",
"test": "npx bats test/"
},
"devDependencies": {
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"commitlint": "20",
"shellcheck": "^4.1.0",
"sort-package-json": ">=3"
}
}