@mdzip/editor 1.3.0 → 1.3.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/README.md +4 -4
  2. package/package.json +10 -1
package/README.md CHANGED
@@ -41,7 +41,7 @@ await view.open(markdownBytes, {
41
41
  The filename normally selects the source format. Pass `sourceFormat:
42
42
  'markdown'` or `sourceFormat: 'mdz'` to override detection.
43
43
 
44
- Normalized `mdzip-core-js` workspaces can be opened without an initial archive
44
+ Normalized `@mdzip/core-js` workspaces can be opened without an initial archive
45
45
  rebuild:
46
46
 
47
47
  ```ts
@@ -143,11 +143,11 @@ injected. The default renderer sanitizes generated HTML and unsafe URL schemes.
143
143
 
144
144
  ## Developer Guide
145
145
 
146
- See the [Developer Guide](https://github.com/mdzip-project/@mdzip/editor/blob/main/docs/developer-guide.md)
146
+ See the [Developer Guide](https://github.com/mdzip-project/mdzip-editor/blob/main/docs/developer-guide.md)
147
147
  for granular host controls, height requirements, lifecycle events, persistence,
148
148
  theming, and Raw, Angular, React, and Vue examples.
149
149
 
150
- See the [Theming Guide](https://github.com/mdzip-project/@mdzip/editor/blob/main/docs/theming.md)
150
+ See the [Theming Guide](https://github.com/mdzip-project/mdzip-editor/blob/main/docs/theming.md)
151
151
  for custom theme examples and the complete CSS variable reference.
152
152
 
153
153
  ## Archive Helpers
@@ -161,4 +161,4 @@ import {
161
161
  } from '@mdzip/editor';
162
162
  ```
163
163
 
164
- These helpers are built on `mdzip-core-js` and are suitable for framework wrappers, desktop hosts, browser apps, and extension integrations.
164
+ These helpers are built on `@mdzip/core-js` and are suitable for framework wrappers, desktop hosts, browser apps, and extension integrations.
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "@mdzip/editor",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Framework-independent MDZip workspace engine.",
5
5
  "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/mdzip-project/mdzip-editor.git",
9
+ "directory": "packages/editor"
10
+ },
11
+ "homepage": "https://mdzip.org",
12
+ "bugs": {
13
+ "url": "https://github.com/mdzip-project/mdzip-editor/issues"
14
+ },
6
15
  "type": "module",
7
16
  "main": "dist/index.js",
8
17
  "types": "dist/index.d.ts",