Skip to content

Commit 2ee0d51

Browse files
João Miguel Marinho da CunhaJoão Miguel Marinho da Cunha
authored andcommitted
📦 tidying up package declaration
1 parent 85abf5c commit 2ee0d51

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 João Cunha
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
{
22
"name": "react-headless-markdown-editor",
3+
"description": "A React component for simple, customisable markdown editors.",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/JoaoCnh/react-headless-markdown-editor.git"
7+
},
8+
"keywords": [
9+
"react",
10+
"typescript",
11+
"markdown",
12+
"markdown editor"
13+
],
14+
"author": "João Cunha <https://github.com/JoaoCnh>",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/JoaoCnh/react-headless-markdown-editor/issues"
18+
},
19+
"homepage": "https://joaocnh.github.io/react-headless-markdown-editor/",
320
"version": "1.1.0",
421
"type": "module",
522
"files": [

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from "react";
22

3-
import { Editor } from "../dist";
3+
import { Editor } from "../lib";
44

55
const controlClx =
66
"inline-block p-4 text-mindera-600 hover:bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 dark:text-mindera-500";

0 commit comments

Comments
 (0)