@side-quest/bun-runner 1.0.0 → 1.0.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @side-quest/bun-runner
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2](https://github.com/nathanvale/side-quest-runners/pull/2) [`429c007`](https://github.com/nathanvale/side-quest-runners/commit/429c00757913f8caa1c15b3a2fd4a7995926b92d) Thanks [@nathanvale](https://github.com/nathanvale)! - Document response_format parameter in README files
8
+
3
9
  ## 1.0.0
4
10
 
5
11
  ### Major Changes
package/README.md CHANGED
@@ -27,6 +27,10 @@ Or in `.mcp.json`:
27
27
  }
28
28
  ```
29
29
 
30
+ ## Response Format
31
+
32
+ All tools accept a `response_format` parameter (`"markdown"` or `"json"`). Use `"json"` for token-efficient structured output in agent pipelines.
33
+
30
34
  ## License
31
35
 
32
36
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@side-quest/bun-runner",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Bun test runner MCP server — structured, token-efficient test output for Claude Code",
5
5
  "author": {
6
6
  "name": "Nathan Vale",
@@ -8,7 +8,9 @@
8
8
  },
9
9
  "license": "MIT",
10
10
  "type": "module",
11
- "bin": "./dist/index.js",
11
+ "bin": {
12
+ "bun-runner": "./dist/index.js"
13
+ },
12
14
  "main": "./dist/index.js",
13
15
  "types": "./dist/index.d.ts",
14
16
  "exports": {