You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
{ |
|
"name": "react-quill-new", |
|
"version": "3.8.3", |
|
"description": "The Quill rich-text editor as a React component.", |
|
"author": "VaguelySerious <mittgfu@gmail.com>, zenoamaro <zenoamaro@gmail.com>, Alex Krolick <alex@alexkrolick.com>", |
|
"license": "MIT", |
|
"homepage": "https://github.com/VaguelySerious/react-quill", |
|
"bugs": "https://github.com/VaguelySerious/react-quill/issues", |
|
"type": "module", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/VaguelySerious/react-quill.git" |
|
}, |
|
"main": "./lib/index.js", |
|
"types": "./lib/index.d.ts", |
|
"files": [ |
|
"dist/", |
|
"lib/", |
|
"README.md", |
|
"CHANGELOG.md", |
|
"LICENSE" |
|
], |
|
"sideEffects": [ |
|
"*.css" |
|
], |
|
"dependencies": { |
|
"lodash-es": "^4.17.21", |
|
"quill": "~2.0.3" |
|
}, |
|
"peerDependencies": { |
|
"quill-delta": "^5.1.0", |
|
"react": "^16 || ^17 || ^18 || ^19", |
|
"react-dom": "^16 || ^17 || ^18 || ^19" |
|
}, |
|
"devDependencies": { |
|
"@types/lodash-es": "^4.17.12", |
|
"@types/react": "^18.3.14", |
|
"@types/react-dom": "^18.3.2", |
|
"@rollup/plugin-commonjs": "^28.0.2", |
|
"@rollup/plugin-node-resolve": "^15.3.0", |
|
"@vitest/browser": "^2.1.8", |
|
"@vitest/ui": "^2.1.8", |
|
"playwright": "^1.49.1", |
|
"react": "^18.3.1", |
|
"react-dom": "^18.3.1", |
|
"rimraf": "^6.0.1", |
|
"rollup": "^4.28.1", |
|
"rollup-plugin-esbuild": "^6.2.0", |
|
"tsup": "^8.3.5", |
|
"typescript": "^5.7.2", |
|
"vitest": "^2.1.8" |
|
}, |
|
"scripts": { |
|
"build": "pnpm run build:lib && pnpm run build:dist && pnpm run build:css", |
|
"build:lib": "tsup --config tsup.config.ts", |
|
"build:dist": "rollup -c rollup.config.mjs", |
|
"build:css": "node ./scripts/copy-quill-css.mjs", |
|
"dev": "tsup --config tsup.config.ts --watch", |
|
"dev:dist": "rollup -c rollup.config.mjs --watch", |
|
"test": "vitest run --config vitest.config.ts", |
|
"clean": "rimraf lib dist" |
|
} |
|
} |