mirror of https://github.com/TriliumNext/Notes
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "@ckeditor/ckeditor5-mermaid",
|
|
"version": "0.0.3",
|
|
"description": "Mermaid widget for CKEditor 5.",
|
|
"private": true,
|
|
"keywords": [
|
|
"ckeditor",
|
|
"ckeditor5",
|
|
"ckeditor 5",
|
|
"ckeditor5-feature",
|
|
"ckeditor5-plugin",
|
|
"ckeditor5-mermaid"
|
|
],
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"author": "CKSource (https://cksource.com/)",
|
|
"homepage": "https://github.com/ckeditor/ckeditor5-mermaid",
|
|
"bugs": "https://github.com/ckeditor/ckeditor5-mermaid/issues",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=5.7.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lang",
|
|
"src",
|
|
"theme",
|
|
"build",
|
|
"ckeditor5-metadata.json"
|
|
],
|
|
"dependencies": {
|
|
"mermaid": "^9.1.4",
|
|
"lodash-es": "^4.17.15"
|
|
},
|
|
"devDependencies": {
|
|
"@ckeditor/ckeditor5-dev-build-tools": "^40.2.0",
|
|
"@ckeditor/ckeditor5-inspector": "^4.0.0",
|
|
"@ckeditor/ckeditor5-package-tools": "^2.0.0-alpha.0",
|
|
"ckeditor5": "latest",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-ckeditor5": "^6.0.0",
|
|
"http-server": "^14.1.0",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.6",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-ckeditor5": ">=2.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly"
|
|
},
|
|
"scripts": {
|
|
"dll:build": "ckeditor5-package-tools dll:build",
|
|
"dll:serve": "http-server ./ -o sample/dll.html",
|
|
"build:dist": "node ./scripts/build-dist.mjs",
|
|
"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": "yarn run dll:build && yarn run build:dist",
|
|
"prepublishOnly": "yarn 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"
|
|
}
|
|
}
|
|
}
|