@ixo/editor 5.40.0 → 6.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ixo/editor",
3
- "version": "5.40.0",
3
+ "version": "6.0.0",
4
4
  "description": "A custom BlockNote editor wrapper for IXO team",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,6 +31,7 @@
31
31
  "import": "./dist/core/index.js",
32
32
  "default": "./dist/core/index.js"
33
33
  },
34
+ "./action-manifest.json": "./dist/action-manifest.json",
34
35
  "./style.css": "./style.css",
35
36
  "./style-mantine.css": "./style-mantine.css",
36
37
  "./style-core.css": "./style-core.css",
@@ -47,7 +48,7 @@
47
48
  }
48
49
  },
49
50
  "scripts": {
50
- "build": "tsup",
51
+ "build": "tsup && node scripts/generate-action-manifest.mjs",
51
52
  "dev": "nodemon --watch src --ext ts,tsx --exec \"tsup\"",
52
53
  "clean": "rimraf dist style.css",
53
54
  "prepare": "husky install && pnpm run clean && pnpm run build",