visual-mirror 1.0.2 → 1.0.4
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/README.md +0 -9
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -95,15 +95,6 @@ export ANTHROPIC_API_KEY="your-api-key-here"
|
|
|
95
95
|
|
|
96
96
|
Get one at [console.anthropic.com](https://console.anthropic.com).
|
|
97
97
|
|
|
98
|
-
## Publishing
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
npm login
|
|
102
|
-
npm publish
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
The `prepublishOnly` script runs `tsc` automatically before publishing.
|
|
106
|
-
|
|
107
98
|
## License
|
|
108
99
|
|
|
109
100
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visual-mirror",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Pixel diffs tell you something changed. Visual Mirror tells you what it means.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,6 +34,14 @@
|
|
|
34
34
|
"ai",
|
|
35
35
|
"claude"
|
|
36
36
|
],
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/kawehtaher/visual-mirror.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/kawehtaher/visual-mirror/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/kawehtaher/visual-mirror#readme",
|
|
37
45
|
"license": "MIT",
|
|
38
46
|
"dependencies": {
|
|
39
47
|
"@anthropic-ai/sdk": "^0.39.0",
|