mirror of
https://github.com/zadam/trilium.git
synced 2025-12-27 02:30:03 +01:00
92 lines
2.7 KiB
JSON
92 lines
2.7 KiB
JSON
{
|
|
"name": "@triliumnext/ckeditor5-footnotes",
|
|
"version": "0.0.4-hotfix10",
|
|
"description": "A plugin for CKEditor 5 to allow footnotes.",
|
|
"keywords": [
|
|
"ckeditor",
|
|
"ckeditor5",
|
|
"ckeditor 5",
|
|
"ckeditor5-feature",
|
|
"ckeditor5-plugin",
|
|
"ckeditor5-package-generator"
|
|
],
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"module": "src/index.js",
|
|
"types": "src/index.d.ts",
|
|
"license": "ISC",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=5.7.1"
|
|
},
|
|
"files": [
|
|
"lang",
|
|
"src/**/*.js",
|
|
"src/**/*.css",
|
|
"src/**/*.d.ts",
|
|
"build",
|
|
"theme",
|
|
"ckeditor5-metadata.json",
|
|
"CHANGELOG.md"
|
|
],
|
|
"dependencies": {
|
|
"ckeditor5": "43.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ckeditor/ckeditor5-autoformat": "43.2.0",
|
|
"@ckeditor/ckeditor5-core": "43.2.0",
|
|
"@ckeditor/ckeditor5-utils": "43.2.0",
|
|
"@ckeditor/ckeditor5-dev-build-tools": "42.0.1",
|
|
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
|
|
"@ckeditor/ckeditor5-package-tools": "^2.1.0",
|
|
"@types/chai": "^4.3.1",
|
|
"@types/mocha": "^9.1.1",
|
|
"@typescript-eslint/eslint-plugin": "~5.43.0",
|
|
"@typescript-eslint/parser": "^5.18.0",
|
|
"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": ">=6.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "5.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly"
|
|
},
|
|
"scripts": {
|
|
"ts:build": "tsc -p ./tsconfig.release.json",
|
|
"ts:clear": "npx rimraf \"src/**/*.@(js|d.ts)\"",
|
|
"dll:build": "ckeditor5-package-tools dll:build",
|
|
"dll:serve": "http-server ./ -o sample/dll.html",
|
|
"lint": "eslint --quiet --ext .ts src/",
|
|
"lint:fix": "eslint --quiet --fix --ext .ts src/",
|
|
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css'",
|
|
"test": "ckeditor5-package-tools test",
|
|
"prepare": "yarn run dll:build",
|
|
"prepublishOnly": "yarn run ts:build && ckeditor5-package-tools export-package-as-javascript",
|
|
"postpublish": "yarn run ts:clear && ckeditor5-package-tools export-package-as-typescript",
|
|
"start": "ckeditor5-package-tools start"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,ts}": [
|
|
"eslint --quiet"
|
|
],
|
|
"**/*.css": [
|
|
"stylelint --quiet --allow-empty-input"
|
|
]
|
|
},
|
|
"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",
|
|
"packageManager": "yarn@1.22.22"
|
|
}
|