100 lines
2.9 KiB
JSON
100 lines
2.9 KiB
JSON
{
|
|
"name": "@esi_package/ckeditor5-export",
|
|
"version": "0.0.1",
|
|
"description": "A plugin for CKEditor 5.",
|
|
"keywords": [
|
|
"ckeditor",
|
|
"ckeditor5",
|
|
"ckeditor 5",
|
|
"ckeditor5-feature",
|
|
"ckeditor5-plugin",
|
|
"ckeditor5-package-generator"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.ts",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./*": "./dist/*",
|
|
"./browser/*": null,
|
|
"./package.json": "./package.json"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=5.7.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"ckeditor5-metadata.json"
|
|
],
|
|
"devDependencies": {
|
|
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
|
|
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
|
|
"@ckeditor/ckeditor5-package-tools": "^3.0.0",
|
|
"@types/file-saver": "^2.0.7",
|
|
"@typescript-eslint/eslint-plugin": "~5.43.0",
|
|
"@typescript-eslint/parser": "^5.18.0",
|
|
"@vitest/browser": "^2.0.5",
|
|
"@vitest/coverage-istanbul": "^2.0.5",
|
|
"ckeditor5": "43.3.1",
|
|
"css-loader": "^7.1.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-ckeditor5": ">=8.0.0",
|
|
"file-saver": "^2.0.5",
|
|
"html-docx-js-typescript": "^0.1.5",
|
|
"http-server": "^14.1.0",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.6",
|
|
"style-loader": "^4.0.0",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-ckeditor5": ">=8.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "5.0.4",
|
|
"vite-plugin-svgo": "~1.4.0",
|
|
"vitest": "^2.0.5",
|
|
"webdriverio": "^9.0.7",
|
|
"webpack": "^5.97.1",
|
|
"webpack-cli": "^6.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly"
|
|
},
|
|
"scripts": {
|
|
"build:dist": "node ./scripts/build-dist.mjs",
|
|
"ts:build": "tsc -p ./tsconfig.release.json",
|
|
"ts:clear": "npx rimraf --glob \"src/**/*.@(js|d.ts)\"",
|
|
"lint": "eslint \"**/*.{js,ts}\" --quiet",
|
|
"start": "ckeditor5-package-tools start",
|
|
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css'",
|
|
"test": "vitest",
|
|
"test:debug": "vitest --inspect-brk --no-file-parallelism --browser.headless=false",
|
|
"prepare": "npm run build:dist",
|
|
"prepublishOnly": "npm run ts:build && ckeditor5-package-tools export-package-as-javascript",
|
|
"postpublish": "npm run ts:clear && ckeditor5-package-tools export-package-as-typescript",
|
|
"translations:synchronize": "ckeditor5-package-tools translations:synchronize",
|
|
"translations:validate": "ckeditor5-package-tools translations:synchronize --validate-only"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,ts}": [
|
|
"eslint --quiet"
|
|
],
|
|
"**/*.css": [
|
|
"stylelint --quiet --allow-empty-input"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@esi_package/ckeditor5-mathlive": "^0.0.16",
|
|
"temml": "^0.10.32"
|
|
}
|
|
}
|