heroshot 0.14.2 → 0.16.0
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 +3 -1
- package/dist/cli/cli.js +195 -148
- package/dist/mcp/index.js +10960 -4
- package/dist/{snippet-B6Lg_Ant.js → snippet-Fc-PkcTD.js} +15 -5
- package/editor/dist/editor.js +2226 -1891
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroshot",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Define your screenshots once, update them forever with one command",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Ondrej Machala",
|
|
@@ -145,13 +145,14 @@
|
|
|
145
145
|
},
|
|
146
146
|
"dependencies": {
|
|
147
147
|
"@clack/prompts": "^0.11.0",
|
|
148
|
-
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
149
148
|
"commander": "^12.1.0",
|
|
150
149
|
"p-limit": "^7.2.0",
|
|
151
150
|
"playwright": "^1.49.0",
|
|
152
|
-
"sharp": "^0.33.0",
|
|
153
151
|
"zod": "^4.3.5"
|
|
154
152
|
},
|
|
153
|
+
"optionalDependencies": {
|
|
154
|
+
"@modelcontextprotocol/sdk": "^1.12.1"
|
|
155
|
+
},
|
|
155
156
|
"peerDependencies": {
|
|
156
157
|
"react": ">=18.0.0",
|
|
157
158
|
"svelte": ">=5.0.0",
|
|
@@ -191,6 +192,7 @@
|
|
|
191
192
|
"test:cli": "vitest run --config vitest.cli.config.ts",
|
|
192
193
|
"test:editor": "vitest run --config editor/vite.config.ts",
|
|
193
194
|
"test:editor:coverage": "vitest run --config editor/vite.config.ts --coverage",
|
|
195
|
+
"test:examples": "for dir in sveltekit nextjs nuxt vitepress docusaurus; do echo \"Testing $dir...\" && (cd integrations/examples/$dir && npx playwright test) || exit 1; done",
|
|
194
196
|
"test:editor:e2e": "playwright test --config editor/playwright.config.ts",
|
|
195
197
|
"test:editor:demo": "playwright test --config editor/playwright.demo.config.ts",
|
|
196
198
|
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile node_modules/.cache/tsbuildinfo",
|