@para-ui/core 2.2.1-beta → 2.2.4-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +43 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@para-ui/core",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.4-beta",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"typings": "./index.d.ts",
|
|
7
7
|
"description": "Powered by Para FED",
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"build:esm": "rm -rf lib && webpack --config=./config/webpack.esm.config.js && tsc",
|
|
18
18
|
"build:umd": "webpack --config=./config/webpack.umd.config.js",
|
|
19
19
|
"build": "npm run build:esm && npm run build:umd",
|
|
20
|
-
"npm:publish": "./publish.sh"
|
|
20
|
+
"npm:publish": "./publish.sh",
|
|
21
|
+
"test": "rm -rf lib && webpack --config=./config/webpack.esm.config.js ",
|
|
22
|
+
"build:es": "rm -rf lib && rm -rf garbage && rollup -c"
|
|
21
23
|
},
|
|
22
24
|
"dependencies": {
|
|
23
25
|
"@para-ui/core": "^2.0.9",
|
|
@@ -54,8 +56,19 @@
|
|
|
54
56
|
"react-transition-group": "4.4.2"
|
|
55
57
|
},
|
|
56
58
|
"devDependencies": {
|
|
59
|
+
"@babel/core": "^7.18.6",
|
|
60
|
+
"@babel/plugin-proposal-decorators": "^7.18.6",
|
|
61
|
+
"@babel/plugin-transform-runtime": "^7.18.6",
|
|
62
|
+
"@babel/preset-env": "^7.18.6",
|
|
63
|
+
"@babel/preset-react": "^7.18.6",
|
|
64
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
57
65
|
"@para-snack/core": "^2.1.0",
|
|
58
66
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
67
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
68
|
+
"@rollup/plugin-commonjs": "^22.0.1",
|
|
69
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
70
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
71
|
+
"@rollup/plugin-url": "^7.0.0",
|
|
59
72
|
"@swc/core": "^1.2.118",
|
|
60
73
|
"@types/react": "17.0.44",
|
|
61
74
|
"@types/react-color": "^3.0.6",
|
|
@@ -71,10 +84,17 @@
|
|
|
71
84
|
"fs-extra": "^8.1.0",
|
|
72
85
|
"html-webpack-plugin": "^5.5.0",
|
|
73
86
|
"mini-css-extract-plugin": "^2.6.1",
|
|
87
|
+
"postcss": "^8.4.14",
|
|
88
|
+
"postcss-import": "^14.1.0",
|
|
74
89
|
"react-app-polyfill": "^3.0.0",
|
|
75
90
|
"react-copy-to-clipboard": "^5.0.3",
|
|
76
91
|
"react-refresh": "^0.11.0",
|
|
77
92
|
"react-syntax-highlighter": "^15.4.4",
|
|
93
|
+
"rollup": "^2.76.0",
|
|
94
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
95
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
96
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
97
|
+
"rollup-plugin-typescript2": "^0.32.1",
|
|
78
98
|
"sass": "^1.52.1",
|
|
79
99
|
"sass-loader": "^8.0.2",
|
|
80
100
|
"style-loader": "^1.1.3",
|
|
@@ -93,6 +113,27 @@
|
|
|
93
113
|
"peerDependencies": {
|
|
94
114
|
"@types/react": "^16.8.6 || ^17.0.0",
|
|
95
115
|
"@types/react-dom": "^16.8.6 || ^17.0.0",
|
|
116
|
+
"clsx": "1.1.1",
|
|
117
|
+
"dayjs": "^1.11.3",
|
|
118
|
+
"rc-cascader": "2.1.2",
|
|
119
|
+
"rc-collapse": "3.1.2",
|
|
120
|
+
"rc-cropping": "1.0.1",
|
|
121
|
+
"rc-dialog": "8.9.0",
|
|
122
|
+
"rc-drawer": "4.4.2",
|
|
123
|
+
"rc-dropdown": "3.6.2",
|
|
124
|
+
"rc-input-number": "7.3.4",
|
|
125
|
+
"rc-motion": "2.4.4",
|
|
126
|
+
"rc-notification": "4.5.7",
|
|
127
|
+
"rc-pagination": "3.1.9",
|
|
128
|
+
"rc-picker": "2.5.14",
|
|
129
|
+
"rc-progress": "^3.2.4",
|
|
130
|
+
"rc-slider": "9.7.4",
|
|
131
|
+
"rc-steps": "4.1.4",
|
|
132
|
+
"rc-switch": "3.2.2",
|
|
133
|
+
"rc-tabs": "11.16.0",
|
|
134
|
+
"rc-tooltip": "5.1.1",
|
|
135
|
+
"rc-tree": "4.2.2",
|
|
136
|
+
"rc-upload": "4.3.1",
|
|
96
137
|
"react": "^16.8.0 || ^17.0.0",
|
|
97
138
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
98
139
|
},
|