react-codemirror-editor 0.2.0 → 0.2.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 -0
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ ![npm](https://img.shields.io/npm/v/react-code-editor)
2
+ ![downloads](https://img.shields.io/npm/dw/react-code-editor)
3
+ ![license](https://img.shields.io/npm/l/react-code-editor)
4
+
1
5
  # React Code Editor
2
6
 
3
7
  A modern, extensible **CodeMirror 6–based React code editor** featuring first-class TypeScript support, language-aware configuration, optional diagnostics, and search/validation support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-codemirror-editor",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "A modular, extensible React code editor built on CodeMirror 6 with first-class JSON support.",
6
6
  "type": "module",
@@ -11,6 +11,14 @@
11
11
  "dist"
12
12
  ],
13
13
  "sideEffects": false,
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/mihirmistry2/react-code-editor.git"
17
+ },
18
+ "homepage": "https://github.com/mihirmistry2/react-code-editor#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/mihirmistry2/react-code-editor/issues"
21
+ },
14
22
  "scripts": {
15
23
  "build": "tsc",
16
24
  "lint": "eslint .",