cc-vision-hook 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix `bin` field paths in `package.json` to remove the leading `./` (npm normalizes this automatically on publish but warns every time — this also serves as the first end-to-end test of the automated release pipeline).
8
+
3
9
  本项目遵循 [Semantic Versioning](https://semver.org/)。
4
10
 
5
11
  ## [0.1.0] - 2026-07-08
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-vision-hook",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Claude Code Hook toolkit that lets vision-blind (silently-ignoring) models understand pasted/tool-produced images by appending an AI-generated description as additionalContext.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -25,8 +25,8 @@
25
25
  "provenance": true
26
26
  },
27
27
  "bin": {
28
- "cvh": "./dist/cli.js",
29
- "cc-vision-hook": "./dist/cli.js"
28
+ "cvh": "dist/cli.js",
29
+ "cc-vision-hook": "dist/cli.js"
30
30
  },
31
31
  "exports": {
32
32
  ".": "./dist/index.js",