-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
95 lines (95 loc) · 3.01 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@wangeditor/editor-for-react",
"version": "1.0.6",
"description": "wangEditor component for React",
"author": "hahaaha <[email protected]>",
"contributors": [],
"homepage": "https://github.com/wangeditor-team/wangEditor-for-react#readme",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.esm.js": "./dist/index.esm.js"
},
"keywords": [
"wangEditor",
"富文本编辑器",
"富文本",
"react"
],
"directories": {
"lib": "dist",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wangeditor-team/wangEditor-for-react.git"
},
"scripts": {
"test": "jest",
"test-c": "jest --coverage",
"example": "cross-env NODE_ENV=development:example rollup -c rollup.example.config.js -w",
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
"dev-watch": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"dev-size-stats": "cross-env NODE_ENV=development:size_stats rollup -c rollup.config.js",
"size-stats": "cross-env NODE_ENV=production:size_stats rollup -c rollup.config.js",
"release": "release-it"
},
"bugs": {
"url": "https://github.com/wangeditor-team/wangEditor-for-react/issues"
},
"peerDependencies": {
"@wangeditor/core": ">=1.1.0",
"@wangeditor/editor": ">=5.1.0",
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@wangeditor/core": "^1.0.0",
"@wangeditor/editor": "^5.0.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^14.11.8",
"rollup": "^2.59.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {}
}