forked from Artem-Schander/quill-paste-smart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.45 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
{
"name": "quill-paste-smart",
"version": "2.0.0",
"description": "Quill Extension to paste only supported HTML",
"main": "dist/quill-paste-smart.js",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Artem-Schander/quill-paste-smart.git"
},
"keywords": [
"quill",
"editor",
"content",
"clipboard",
"paste",
"tidy"
],
"author": "Artem Schander",
"license": "MIT",
"bugs": {
"url": "https://github.com/Artem-Schander/quill-paste-smart/issues"
},
"homepage": "https://github.com/Artem-Schander/quill-paste-smart",
"dependencies": {
"dompurify": "^3.1.6"
},
"peerDependencies": {
"quill": "^2.0.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"rules": {
"eqeqeq": [
2,
"allow-null"
],
"no-unused-vars": [
1,
{
"vars": "local",
"args": "none"
}
],
"no-console": 0
},
"env": {
"browser": true,
"node": true
}
},
"files": [
"dist/"
]
}