github-markdown-editor 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 +5 -5
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -162,7 +162,7 @@ function ControlledEditor() {
|
|
|
162
162
|
|
|
163
163
|
```bash
|
|
164
164
|
# Clone the repository
|
|
165
|
-
git clone https://github.com/
|
|
165
|
+
git clone https://github.com/justq-me/gh-markdown-editor.git
|
|
166
166
|
|
|
167
167
|
# Install dependencies
|
|
168
168
|
npm install
|
|
@@ -187,7 +187,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
187
187
|
|
|
188
188
|
## 🐛 Issues
|
|
189
189
|
|
|
190
|
-
If you find a bug or have a feature request, please create an issue on [GitHub](https://github.com/
|
|
190
|
+
If you find a bug or have a feature request, please create an issue on [GitHub](https://github.com/justq-me/gh-markdown-editor/issues).
|
|
191
191
|
|
|
192
192
|
## 🙏 Acknowledgments
|
|
193
193
|
|
|
@@ -204,10 +204,10 @@ If you find a bug or have a feature request, please create an issue on [GitHub](
|
|
|
204
204
|
|
|
205
205
|
## 🔗 Links
|
|
206
206
|
|
|
207
|
-
- [Documentation](https://github.com/
|
|
207
|
+
- [Documentation](https://github.com/justq-me/gh-markdown-editor#readme)
|
|
208
208
|
- [NPM Package](https://www.npmjs.com/package/github-markdown-editor)
|
|
209
|
-
- [GitHub Repository](https://github.com/
|
|
209
|
+
- [GitHub Repository](https://github.com/justq-me/gh-markdown-editor)
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
|
213
|
-
Made with ❤️ by [JustQ]
|
|
213
|
+
Made with ❤️ by [JustQ](https://justq.me/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-markdown-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A modern GitHub-like Markdown editor built with CodeMirror 6",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"dev": "vite",
|
|
21
21
|
"build": "tsc && vite build",
|
|
22
|
-
"prepublishOnly": "npm run build"
|
|
22
|
+
"prepublishOnly": "npm run build",
|
|
23
|
+
"example": "vite --config example/vite.config.ts",
|
|
24
|
+
"example:dev": "vite --config example/vite.config.ts"
|
|
23
25
|
},
|
|
24
26
|
"keywords": [
|
|
25
27
|
"markdown",
|
|
@@ -52,6 +54,8 @@
|
|
|
52
54
|
"@types/react": "^18.2.48",
|
|
53
55
|
"@types/react-dom": "^18.2.18",
|
|
54
56
|
"@vitejs/plugin-react": "^4.2.1",
|
|
57
|
+
"react": "^18.2.0",
|
|
58
|
+
"react-dom": "^18.2.0",
|
|
55
59
|
"typescript": "^5.3.3",
|
|
56
60
|
"vite": "^5.0.11",
|
|
57
61
|
"vite-plugin-dts": "^3.9.1"
|