-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"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 <[email protected]>",
"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",
"babel-loader": "^9.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^7.2.1",
"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"
}
}