@ckeditor/ckeditor5-markdown-gfm 47.6.1 → 48.0.0-alpha.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.
- package/ckeditor5-metadata.json +1 -1
- package/{src → dist}/gfmdataprocessor.d.ts +1 -1
- package/dist/index.css +3 -0
- package/dist/index.css.map +1 -0
- package/{src → dist}/index.d.ts +1 -1
- package/dist/index.js +44 -14
- package/dist/index.js.map +1 -1
- package/{src → dist}/markdown.d.ts +1 -1
- package/dist/markdown2html/markdown2html.d.ts +34 -0
- package/{src → dist}/pastefrommarkdownexperimental.d.ts +2 -2
- package/package.json +22 -45
- package/build/markdown-gfm.js +0 -4
- package/src/augmentation.js +0 -5
- package/src/gfmdataprocessor.js +0 -86
- package/src/html2markdown/html2markdown.js +0 -97
- package/src/index.js +0 -13
- package/src/markdown.js +0 -35
- package/src/markdown2html/markdown2html.d.ts +0 -12
- package/src/markdown2html/markdown2html.js +0 -98
- package/src/pastefrommarkdownexperimental.js +0 -157
- /package/{src → dist}/augmentation.d.ts +0 -0
- /package/{src → dist}/html2markdown/html2markdown.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,28 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-markdown-gfm",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "48.0.0-alpha.1",
|
|
4
4
|
"description": "GitHub Flavored Markdown data processor for CKEditor 5.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"author": "CKSource (http://cksource.com/)",
|
|
7
|
+
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
8
|
+
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/ckeditor/ckeditor5.git",
|
|
12
|
+
"directory": "packages/ckeditor5-markdown-gfm"
|
|
13
|
+
},
|
|
5
14
|
"keywords": [
|
|
6
15
|
"ckeditor",
|
|
7
16
|
"ckeditor5",
|
|
8
17
|
"ckeditor 5",
|
|
9
18
|
"ckeditor5-feature",
|
|
10
|
-
"ckeditor5-plugin"
|
|
11
|
-
"ckeditor5-dll"
|
|
19
|
+
"ckeditor5-plugin"
|
|
12
20
|
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "./dist/index.js",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": "./dist/index.js",
|
|
25
|
+
"./dist/*": "./dist/*",
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
13
28
|
"sideEffects": [
|
|
14
29
|
"*.css",
|
|
15
|
-
"build/**/*.js",
|
|
16
30
|
"dist/translations/*.umd.js"
|
|
17
31
|
],
|
|
18
|
-
"type": "module",
|
|
19
|
-
"main": "src/index.js",
|
|
20
32
|
"dependencies": {
|
|
21
|
-
"@ckeditor/ckeditor5-clipboard": "
|
|
22
|
-
"@ckeditor/ckeditor5-core": "
|
|
23
|
-
"@ckeditor/ckeditor5-engine": "
|
|
33
|
+
"@ckeditor/ckeditor5-clipboard": "48.0.0-alpha.1",
|
|
34
|
+
"@ckeditor/ckeditor5-core": "48.0.0-alpha.1",
|
|
35
|
+
"@ckeditor/ckeditor5-engine": "48.0.0-alpha.1",
|
|
24
36
|
"@types/hast": "3.0.4",
|
|
25
|
-
"ckeditor5": "47.6.1",
|
|
26
37
|
"hast-util-from-dom": "5.0.1",
|
|
27
38
|
"hast-util-to-html": "9.0.5",
|
|
28
39
|
"hast-util-to-mdast": "10.1.2",
|
|
@@ -38,44 +49,10 @@
|
|
|
38
49
|
"unified": "11.0.5",
|
|
39
50
|
"unist-util-visit": "5.0.0"
|
|
40
51
|
},
|
|
41
|
-
"author": "CKSource (http://cksource.com/)",
|
|
42
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
43
|
-
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
44
|
-
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://github.com/ckeditor/ckeditor5.git",
|
|
48
|
-
"directory": "packages/ckeditor5-markdown-gfm"
|
|
49
|
-
},
|
|
50
52
|
"files": [
|
|
51
53
|
"dist",
|
|
52
|
-
"lang",
|
|
53
|
-
"src/**/*.js",
|
|
54
|
-
"src/**/*.d.ts",
|
|
55
|
-
"theme",
|
|
56
|
-
"build",
|
|
57
54
|
"ckeditor5-metadata.json",
|
|
58
55
|
"CHANGELOG.md"
|
|
59
56
|
],
|
|
60
|
-
"types": "
|
|
61
|
-
"exports": {
|
|
62
|
-
".": {
|
|
63
|
-
"types": "./src/index.d.ts",
|
|
64
|
-
"import": "./src/index.js",
|
|
65
|
-
"default": "./src/index.js"
|
|
66
|
-
},
|
|
67
|
-
"./dist/*": {
|
|
68
|
-
"types": "./src/index.d.ts",
|
|
69
|
-
"import": "./dist/*",
|
|
70
|
-
"default": "./dist/*"
|
|
71
|
-
},
|
|
72
|
-
"./src/*": {
|
|
73
|
-
"types": "./src/*.d.ts",
|
|
74
|
-
"import": "./src/*",
|
|
75
|
-
"default": "./src/*"
|
|
76
|
-
},
|
|
77
|
-
"./build/*": "./build/*",
|
|
78
|
-
"./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
|
|
79
|
-
"./package.json": "./package.json"
|
|
80
|
-
}
|
|
57
|
+
"types": "./dist/index.d.ts"
|
|
81
58
|
}
|