Elian Doran 2a700da824 Add '_regroup/ckeditor5-keyboard-marker/' from commit 'c875badc77499941b974c0e5ea7c24728a47e35d'
git-subtree-dir: _regroup/ckeditor5-keyboard-marker
git-subtree-mainline: b5fa9f8ea4d8bb37e1e4804e0fe6d30657247d0f
git-subtree-split: c875badc77499941b974c0e5ea7c24728a47e35d
2025-05-04 14:24:39 +03:00

57 lines
1.4 KiB
JSON

{
"name": "@mlewand/ckeditor5-keyboard-marker",
"version": "1.0.2",
"description": "This plugin adds support for the keyboard input element (`<kbd>`) to CKEditor 5.",
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"peerDependencies": {
"@ckeditor/ckeditor5-core": ">=19.0.0",
"@ckeditor/ckeditor5-ui": ">=19.0.0",
"@ckeditor/ckeditor5-basic-styles": ">=19.0.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^1.3.1",
"lint-staged": "^7.0.0",
"stylelint": "^11.1.1",
"stylelint-config-ckeditor5": "^1.0.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=5.7.1"
},
"author": "Marek Lewandowski",
"license": "GPL-3.0",
"homepage": "https://github.com/mlewand/ckeditor5-keyboard-marker",
"bugs": "https://github.com/mlewand/ckeditor5-keyboard-marker/issues",
"repository": {
"type": "git",
"url": "https://github.com/mlewand/ckeditor5-keyboard-marker.git"
},
"files": [
"src",
"icons"
],
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
],
"**/*.css": [
"stylelint --quiet --allow-empty-input"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}