forked from mudoo/quill-resize-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
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
{
"name": "quill-resize-module",
"version": "2.0.4",
"description": "A module for Quill rich text editor to allow images/iframe/video and custom elements(covert to placeholder) to be resized.",
"main": "dist/resize.js",
"module": "src/index.js",
"scripts": {
"dev": "webpack serve",
"serve": "webpack serve",
"watch": "webpack --watch",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudoo/quill-resize-module.git"
},
"keywords": [
"quill",
"resize",
"blot",
"image",
"iframe",
"video",
"placeholder"
],
"files": [
"demo",
"dist",
"src"
],
"author": "mudoo <mudoo@qq.com>",
"contributors": [
{
"name": "Wikia",
"url": "https://github.com/Wikia"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mudoo/quill-resize-module/issues"
},
"homepage": "https://github.com/mudoo/quill-resize-module#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.26.0",
"@webpack-cli/generators": "^3.0.7",
"ajv": "^6.12.6",
"babel-loader": "^9.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.1",
"quill": "^2.0.0",
"sass": "^1.81.1",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}