-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "quill-html-edit-button",
"description": "A Quill rich text editor Module which adds an html edit button to the quill editor",
"version": "0.0.0",
"main": "dist/quill.htmlEditButton.min.js",
"types": "types/index.d.ts",
"repository": "https://github.com/benwinding/quill-html-edit-button",
"author": "Ben Winding <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "webpack --watch --progress",
"build": "yarn build-lib && yarn build-types",
"build-lib": "webpack --mode production",
"build-types": "tsc --declaration --emitDeclarationOnly",
"test": "jest",
"test-watch": "jest --watch-all",
"lint": "prettier --write src/**/*.ts",
"clean": "rm -rf dist/"
},
"keywords": [
"quill",
"quilljs",
"html",
"button",
"edit"
],
"peerDependencies": {
"quill": "^2.x"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.22",
"@types/quill": "^2.0.1",
"css-loader": "^0.28.8",
"highlight.js": "^10.1.2",
"html-loader": "^1.3.2",
"jest": "^26.6.3",
"prettier": "^3.0.3",
"quill": "^2.0.2",
"style-loader": "^0.19.1",
"ts-jest": "^26.4.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
}
}