diff --git a/README.md b/README.md index 3a1429e40..7e1831e2e 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ This package was created by the [ckeditor5-package-generator](https://www.npmjs.com/package/ckeditor5-package-generator) package. It is highly derivative of [ForumMagnum Footnote Plugin](https://github.com/ForumMagnum/ForumMagnum/tree/master/public/lesswrong-editor/src/ckeditor5-footnote/src). All intellectual credit should go to the developers of this plugin. -🚧🚧🚧 STILL UNDER DEVELOPMENT 🚧🚧🚧 - ## Table of contents * [Developing the package](#developing-the-package) diff --git a/package.json b/package.json index 1fe57ab5c..6c2d89677 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "./browser/*": null, "./package.json": "./package.json" }, - "license": "MIT", + "license": "ISC", "engines": { "node": ">=18.0.0", "npm": ">=5.7.1" @@ -80,5 +80,14 @@ "hooks": { "pre-commit": "lint-staged" } - } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ThomasAitken/ckeditor5-footnotes.git" + }, + "author": "Thomas Aitken", + "bugs": { + "url": "https://github.com/ThomasAitken/ckeditor5-footnotes/issues" + }, + "homepage": "https://github.com/ThomasAitken/ckeditor5-footnotes#readme" } diff --git a/src/index.ts b/src/index.ts index f8d41d0bc..6db36008c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,8 @@ -import ckeditor from './../theme/icons/ckeditor.svg'; +import insertFootnoteIcon from './../theme/icons/insert-footnote.svg'; import './augmentation.js'; export { default as Footnotes } from './footnotes.js'; export const icons = { - ckeditor + insertFootnoteIcon };