@accelerated-agency/visual-editor 0.5.2 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accelerated-agency/visual-editor",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "private": false,
5
5
  "description": "Conversion visual editor as a reusable React package",
6
6
  "type": "module",
@@ -17,14 +17,20 @@
17
17
  "default": "./dist/vite.js"
18
18
  }
19
19
  },
20
+ "publishConfig": {
21
+ "access": "public",
22
+ "registry": "https://registry.npmjs.org"
23
+ },
20
24
  "files": [
21
- "dist"
25
+ "dist",
26
+ "src/images"
22
27
  ],
23
28
  "sideEffects": false,
24
29
  "scripts": {
25
30
  "dev": "tsup --watch",
26
31
  "clean": "rm -rf dist",
27
32
  "build": "tsup",
33
+ "generate:cro-previews": "PLAYWRIGHT_BROWSERS_PATH=./.playwright-browsers tsx scripts/generate-cro-section-previews.ts",
28
34
  "local:build": "tsup && yarn --cwd ../codebase-server clean && yarn --cwd ../codebase-server dev",
29
35
  "watch": "tsup --watch",
30
36
  "deploy:worker": "wrangler deploy"
@@ -44,7 +50,9 @@
44
50
  "@types/node": "^24.5.2",
45
51
  "@types/react": "^19.2.5",
46
52
  "@types/react-dom": "^19.2.3",
53
+ "playwright": "^1.52.0",
47
54
  "tsup": "^8.5.0",
55
+ "tsx": "^4.19.4",
48
56
  "typescript": "^5.9.3",
49
57
  "vite": "^7.2.4"
50
58
  }