UNPKG

@enzedonline/quill-blot-formatter2

Version:

An update for quill-blot-formatter to make quilljs v2 compatible.

69 lines (68 loc) 2.15 kB
{ "name": "@enzedonline/quill-blot-formatter2", "version": "3.2.0", "description": "An update for quill-blot-formatter to make quilljs v2 compatible.", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.esm.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.cjs" }, "./dist/css/quill-blot-formatter2.css": "./dist/css/quill-blot-formatter2.css" }, "unpkg": "./dist/index.js", "jsdelivr": "./dist/index.js", "homepage": "https://github.com/enzedonline/quill-blot-formatter2", "bugs": { "url": "https://github.com/enzedonline/quill-blot-formatter2/issues" }, "contributors": [ { "name": "Richard Allen", "email": "enzedonline@users.noreply.github.com", "url": "https://github.com/enzedonline" } ], "repository": { "type": "git", "url": "git+https://github.com/enzedonline/quill-blot-formatter2.git" }, "files": [ "dist", "check-upgrade.cjs" ], "keywords": [ "quill", "blot", "image", "resize" ], "license": "Apache-2.0", "dependencies": { "deepmerge": "^4.3.1" }, "devDependencies": { "@microsoft/api-extractor": "^7.57.7", "@types/node": "^24.10.9", "ajv": "^8.17.1", "quill": "^2.0.3", "rimraf": "^6.1.2", "typescript": "^5.9.3", "vite": "^7.3.1", "vite-plugin-dts": "^4.5.4" }, "scripts": { "clean": "rimraf dist", "build": "npm run clean && vite build", "prepublishOnly": "npm run build", "dev": "vite --host 0.0.0.0 --port 3000", "preview": "vite preview", "preinstall": "node ./check-upgrade.cjs", "release_minor": "npm version minor -m \"release: v%s\" && npm run build && git add dist && git commit --amend --no-edit && git push origin master && git push origin --tags", "release_patch": "npm version patch -m \"release: v%s\" && npm run build && git add dist && git commit --amend --no-edit && git push origin master && git push origin --tags" } }