forked from kensnyder/quill-image-resize-module
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "quill-image-resizor",
"version": "2.0.0",
"description": "A module for Quill rich text editor to allow images to be resized.",
"type": "module",
"source": "src/ImageResizor.js",
"exports": {
"require": "./dist/ImageResizor.umd.cjs",
"default": "./dist/ImageResizor.js"
},
"main": "./dist/ImageResizor.umd.cjs",
"module": "./dist/ImageResizor.js",
"types": "./dist/ImageResizor.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "vite build",
"deploy": "npm run build && gh-pages -d .",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/killercodemonkey/quill-image-resizor.git"
},
"keywords": [
"quill",
"quilljs",
"quill2",
"image",
"resize",
"resizer",
"resizor",
"sizer"
],
"author": "@killercodemonkey",
"contributors": [
{
"name": "Bengt Weiße",
"url": "https://github.com/killercodemonkey"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/killercodemonkey/quill-image-resizor/issues"
},
"homepage": "https://github.com/killercodemonkey/quill-image-resizor#readme",
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"quill": "^2.0.3",
"typescript": "^5.7.2",
"vite": "^6.0.4",
"vite-plugin-dts": "^4.4.0"
},
"peerDependencies": {
"quill": "^2.0.0"
},
"volta": {
"node": "20.14.0"
}
}