markdown-text-editor 0.5.0 → 1.0.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/dist/index.css +3 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -1
- package/dist/index.js.map +1 -1
- package/dist/markdown-text-editor.css +3 -3
- package/dist/markdown-text-editor.css.map +1 -1
- package/dist/markdown-text-editor.js +1 -1
- package/dist/markdown-text-editor.js.LICENSE.txt +1 -1
- package/dist/markdown-text-editor.js.map +1 -1
- package/package.json +11 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-text-editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A simple JavaScript Markdown editor plugin with real-time preview, and easy integration.",
|
|
5
5
|
"funding": "https://ko-fi.com/nezanuha",
|
|
6
6
|
"main": "./dist/markdown-text-editor.js",
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"clean": "rimraf ./dist",
|
|
20
|
+
"dev": "webpack serve --config scripts/webpack.config.dev.js --mode=development",
|
|
20
21
|
"build": "npm run clean && webpack --config scripts/webpack.config.prod.js --mode=production",
|
|
21
22
|
"prepublishOnly": "npm run build",
|
|
22
|
-
"
|
|
23
|
+
"postversion": "git push origin main --tags"
|
|
23
24
|
},
|
|
24
25
|
"publishConfig": {
|
|
25
26
|
"provenance": true,
|
|
@@ -59,26 +60,26 @@
|
|
|
59
60
|
"url": "https://github.com/nezanuha/markdown-text-editor/issues"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
|
-
"marked": "~17.0.
|
|
63
|
+
"marked": "~17.0.3"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
66
|
"@babel/core": "^7.29.0",
|
|
66
67
|
"@babel/preset-env": "^7.29.0",
|
|
67
|
-
"@tailwindcss/postcss": "^4.
|
|
68
|
+
"@tailwindcss/postcss": "^4.2.0",
|
|
68
69
|
"@tailwindcss/typography": "^0.5.19",
|
|
69
70
|
"babel-loader": "^10.0.0",
|
|
70
|
-
"css-loader": "^7.1.
|
|
71
|
+
"css-loader": "^7.1.4",
|
|
71
72
|
"diff": "^8.0.3",
|
|
72
|
-
"frutjam": "^1.
|
|
73
|
+
"frutjam": "^1.9.1",
|
|
73
74
|
"html-webpack-plugin": "^5.6.6",
|
|
74
75
|
"mini-css-extract-plugin": "^2.10.0",
|
|
75
76
|
"postcss": "^8.5.6",
|
|
76
|
-
"postcss-loader": "^8.2.
|
|
77
|
-
"rimraf": "^6.1.
|
|
77
|
+
"postcss-loader": "^8.2.1",
|
|
78
|
+
"rimraf": "^6.1.3",
|
|
78
79
|
"style-loader": "^4.0.0",
|
|
79
|
-
"tailwindcss": "^4.
|
|
80
|
+
"tailwindcss": "^4.2.0",
|
|
80
81
|
"terser-webpack-plugin": "^5.3.16",
|
|
81
|
-
"webpack": "^5.105.
|
|
82
|
+
"webpack": "^5.105.2",
|
|
82
83
|
"webpack-cli": "^6.0.1",
|
|
83
84
|
"webpack-dev-server": "^5.2.3"
|
|
84
85
|
}
|