diff --git a/DynamicQuillTools.js b/DynamicQuillTools.js index 2a9982a..ae02e55 100644 --- a/DynamicQuillTools.js +++ b/DynamicQuillTools.js @@ -222,4 +222,6 @@ class QuillToolbarButton extends QuillToolbarItem { onClick(button, quill) { } -} \ No newline at end of file +} + +export { QuillToolbarItem, QuillToolbarDropDown, QuillToolbarButton } \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..cfaf7c9 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "dynamicquilltools", + "version": "1.0.0", + "description": "DynamicQuillTools is a library that allows you to dynamically add or remove new custom elements to/from a Quill Editor's toolbar. For instance a button or a drop down menu.", + "main": "DynamicQuillTools.js", + "directories": { + "doc": "docs" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/T-vK/DynamicQuillTools.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/T-vK/DynamicQuillTools/issues" + }, + "homepage": "https://github.com/T-vK/DynamicQuillTools#readme" +}