-
- Downloads
Initialize the repository using CKEditor 5 Package Generator.
parents
Branches
Tags
Showing
- .editorconfig 19 additions, 0 deletions.editorconfig
- .eslintrc.js 25 additions, 0 deletions.eslintrc.js
- .gitattributes 18 additions, 0 deletions.gitattributes
- .gitignore 5 additions, 0 deletions.gitignore
- .stylelintrc 3 additions, 0 deletions.stylelintrc
- LICENSE.md 6 additions, 0 deletionsLICENSE.md
- README.md 168 additions, 0 deletionsREADME.md
- ckeditor5-metadata.json 17 additions, 0 deletionsckeditor5-metadata.json
- lang/contexts.json 3 additions, 0 deletionslang/contexts.json
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 84 additions, 0 deletionspackage.json
- sample/ckeditor.js 100 additions, 0 deletionssample/ckeditor.js
- sample/dll.html 156 additions, 0 deletionssample/dll.html
- sample/index.html 99 additions, 0 deletionssample/index.html
- src/index.js 7 additions, 0 deletionssrc/index.js
- src/myplugin.js 41 additions, 0 deletionssrc/myplugin.js
- tests/index.js 16 additions, 0 deletionstests/index.js
- tests/myplugin.js 59 additions, 0 deletionstests/myplugin.js
- theme/icons/ckeditor.svg 1 addition, 0 deletionstheme/icons/ckeditor.svg
.editorconfig
0 → 100644
.eslintrc.js
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.stylelintrc
0 → 100644
LICENSE.md
0 → 100644
README.md
0 → 100644
ckeditor5-metadata.json
0 → 100644
lang/contexts.json
0 → 100644
package-lock.json
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
package.json
0 → 100644
{ | ||
"name": "@indiscale/ckeditor5-complexitywiki-plugins", | ||
"version": "0.0.1", | ||
"description": "A plugin for CKEditor 5.", | ||
"keywords": [ | ||
"ckeditor", | ||
"ckeditor5", | ||
"ckeditor 5", | ||
"ckeditor5-feature", | ||
"ckeditor5-plugin", | ||
"ckeditor5-dll", | ||
"ckeditor5-package-generator" | ||
], | ||
"main": "src/index.js", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=14.0.0", | ||
"npm": ">=5.7.1" | ||
}, | ||
"files": [ | ||
"lang", | ||
"src", | ||
"theme", | ||
"build", | ||
"ckeditor5-metadata.json" | ||
], | ||
"dependencies": { | ||
"ckeditor5": ">=32.0.0" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-autoformat": ">=32.0.0", | ||
"@ckeditor/ckeditor5-basic-styles": ">=32.0.0", | ||
"@ckeditor/ckeditor5-block-quote": ">=32.0.0", | ||
"@ckeditor/ckeditor5-code-block": ">=32.0.0", | ||
"@ckeditor/ckeditor5-core": ">=32.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": ">=32.0.0", | ||
"@ckeditor/ckeditor5-essentials": ">=32.0.0", | ||
"@ckeditor/ckeditor5-heading": ">=32.0.0", | ||
"@ckeditor/ckeditor5-image": ">=32.0.0", | ||
"@ckeditor/ckeditor5-indent": ">=32.0.0", | ||
"@ckeditor/ckeditor5-inspector": "^2.2.2", | ||
"@ckeditor/ckeditor5-link": ">=32.0.0", | ||
"@ckeditor/ckeditor5-list": ">=32.0.0", | ||
"@ckeditor/ckeditor5-media-embed": ">=32.0.0", | ||
"@ckeditor/ckeditor5-package-tools": "^1.0.0-beta.4", | ||
"@ckeditor/ckeditor5-paragraph": ">=32.0.0", | ||
"@ckeditor/ckeditor5-table": ">=32.0.0", | ||
"@ckeditor/ckeditor5-theme-lark": ">=32.0.0", | ||
"@ckeditor/ckeditor5-upload": ">=32.0.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-ckeditor5": ">=3.1.1", | ||
"http-server": "^14.1.0", | ||
"husky": "^4.2.5", | ||
"lint-staged": "^10.2.6", | ||
"stylelint": "^13.13.1", | ||
"stylelint-config-ckeditor5": ">=2.0.1" | ||
}, | ||
"scripts": { | ||
"dll:build": "ckeditor5-package-tools dll:build", | ||
"dll:serve": "http-server ./ -o sample/dll.html", | ||
"lint": "eslint \"**/*.js\" --quiet --ignore-pattern \"build/\"", | ||
"start": "ckeditor5-package-tools start", | ||
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css'", | ||
"test": "ckeditor5-package-tools test", | ||
"prepare": "npm run dll:build", | ||
"prepublishOnly": "npm run dll:build", | ||
"translations:collect": "ckeditor5-package-tools translations:collect", | ||
"translations:download": "ckeditor5-package-tools translations:download", | ||
"translations:upload": "ckeditor5-package-tools translations:upload" | ||
}, | ||
"lint-staged": { | ||
"**/*.js": [ | ||
"eslint --quiet" | ||
], | ||
"**/*.css": [ | ||
"stylelint --quiet --allow-empty-input" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
} | ||
} |
sample/ckeditor.js
0 → 100644
sample/dll.html
0 → 100644
sample/index.html
0 → 100644
src/index.js
0 → 100644
src/myplugin.js
0 → 100644
tests/index.js
0 → 100644
tests/myplugin.js
0 → 100644
theme/icons/ckeditor.svg
0 → 100644
Please register or sign in to comment