@domternal/vanilla 1.0.1 → 1.0.2
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 +1 -1
- package/package.json +17 -11
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Lit, Web Components, or plain HTML - anywhere without a framework runtime.
|
|
|
22
22
|
pnpm add @domternal/core @domternal/theme @domternal/vanilla
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
`@domternal/core` (>=1.0.0) is a peer dependency. `@domternal/theme` supplies the editor
|
|
25
|
+
`@domternal/core` (>=1.0.0 <2.0.0) is a peer dependency. `@domternal/theme` supplies the editor
|
|
26
26
|
styles (import it once in your app).
|
|
27
27
|
|
|
28
28
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@domternal/vanilla",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "MIT-licensed framework-free DOM components for the Domternal rich text editor",
|
|
5
5
|
"author": "https://github.com/ThomasNowHere",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -21,7 +21,15 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@domternal/core": ">=1.0.0"
|
|
24
|
+
"@domternal/core": ">=1.0.0 <2.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsup --watch",
|
|
29
|
+
"lint": "eslint src",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm build && node ../../scripts/prepare-publish-manifest.mjs",
|
|
32
|
+
"postpublish": "git checkout package.json"
|
|
25
33
|
},
|
|
26
34
|
"keywords": [
|
|
27
35
|
"vanilla",
|
|
@@ -31,6 +39,10 @@
|
|
|
31
39
|
"prosemirror",
|
|
32
40
|
"editor",
|
|
33
41
|
"rich-text",
|
|
42
|
+
"rich-text-editor",
|
|
43
|
+
"wysiwyg",
|
|
44
|
+
"typescript",
|
|
45
|
+
"web-components",
|
|
34
46
|
"domternal"
|
|
35
47
|
],
|
|
36
48
|
"repository": {
|
|
@@ -41,11 +53,5 @@
|
|
|
41
53
|
"bugs": {
|
|
42
54
|
"url": "https://github.com/domternal/domternal/issues"
|
|
43
55
|
},
|
|
44
|
-
"homepage": "https://domternal.dev"
|
|
45
|
-
|
|
46
|
-
"build": "tsup",
|
|
47
|
-
"dev": "tsup --watch",
|
|
48
|
-
"lint": "eslint src",
|
|
49
|
-
"typecheck": "tsc --noEmit"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
56
|
+
"homepage": "https://domternal.dev"
|
|
57
|
+
}
|