-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
{
"name": "quill-react-commercial",
"version": "1.6.1",
"description": "A Quill component for React and more maturely.",
"type": "module",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsbuild": "tsc && cp -R assets lib/",
"build": "npx babel example/app.js --out-dir ./example/compile && rimraf lib && rollup -c",
"babel": "npx babel example/app.js --watch --out-dir ./example/compile --source-maps",
"example": "npx babel example/app.js --out-dir ./example/compile --source-maps && rimraf lib && rollup -c --watch"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/ludejun/quill-react-commercial.git"
},
"homepage": "https://ludejun.github.io/quill-react-commercial/",
"license": "ISC",
"dependencies": {
"highlight.js": "^10.7.2",
"normalize-url": "^8.0.0",
"quill": "^2.0.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"sideEffects": [
"*.less",
"*.css"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-strip": "^3.0.1",
"@rollup/plugin-typescript": "8.3.3",
"@types/quill": "^2.0.9",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.2.7",
"less": "^4.2.0",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-import-css": "^3.5.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^3.7.5"
},
"keywords": [
"Quill",
"Quill 2.0",
"react components",
"richTextEditor",
"rich text",
"Rich Text Format",
"Syntax Table Image",
"editor",
"rich-text-editor",
"wysiwyg-editor",
"富文本编辑器",
"微信小程序",
"辰记"
]
}