@brickhouse-tech/sync-agents 0.1.16 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickhouse-tech/sync-agents",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Simple scripts to DRY up common agent interactions across multiple LLM providers.",
5
5
  "keywords": [
6
6
  "agents",
@@ -31,12 +31,16 @@
31
31
  },
32
32
  "scripts": {
33
33
  "lint": "shellcheck src/sh/*.sh",
34
- "test": "npx bats test/"
34
+ "test": "npx concurrently --names \"sh,go\" -c \"cyan,magenta\" \"npm run test:sh\" \"npm run test:go\"",
35
+ "test:sh": "npx bats test/",
36
+ "test:go": "make test",
37
+ "prepare": "make install"
35
38
  },
36
39
  "devDependencies": {
37
40
  "@commitlint/cli": "^20",
38
41
  "@commitlint/config-conventional": "^20",
39
42
  "commitlint": "20",
43
+ "concurrently": "^9.2.1",
40
44
  "shellcheck": "^4.1.0",
41
45
  "sort-package-json": ">=3"
42
46
  }