-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "quill-image-compress",
"description": "A Quill rich text editor Module which compresses images uploaded to the editor",
"version": "2.0.1",
"main": "dist/quill.imageCompressor.min.js",
"types": "types/index.d.ts",
"homepage": "https://benwinding.github.io/quill-image-compress/src/demo.html",
"repository": "https://github.com/benwinding/quill-image-compress",
"author": "Ben Winding <ben.winding@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "webpack --watch --progress --mode development",
"start": "webpack serve --mode development --hot",
"build-dev": "webpack --mode development",
"build": "webpack --mode production"
},
"files": [
"src/*.html",
"src/*.js",
"types",
"dist",
"README.md"
],
"keywords": [
"quill",
"quilljs",
"image",
"compress",
"compression",
"reduce"
],
"peerDependencies": {
"quill": "^2.0.2"
},
"devDependencies": {
"quill": "^2.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
}
}