react-table-edit 1.2.32 → 1.2.34

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 CHANGED
@@ -1,18 +1,15 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
- "version": "1.2.32",
3
+ "version": "1.2.34",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
- "exports": {
7
- "import": "./dist/index.mjs",
8
- "require": "./dist/index.js"
9
- },
6
+ "types": "dist/index.d.ts",
10
7
  "files": [
11
8
  "dist/**/*"
12
9
  ],
13
10
  "scripts": {
14
- "build": "webpack --config webpack.config.js",
15
- "start": "webpack serve --config webpack.config.js --mode development"
11
+ "build": "tsup src/index.ts --format cjs,esm --dts",
12
+ "start": "node dist/index.js"
16
13
  },
17
14
  "keywords": [
18
15
  "react",
@@ -24,46 +21,29 @@
24
21
  ],
25
22
  "license": "ISC",
26
23
  "author": "hungnv",
27
- "peerDependencies": {
28
- "i18next": "^21.8.2",
29
- "react": ">=16.8.6",
30
- "react-dom": ">=16.8.6",
31
- "react-hook-form": "^7.43.9",
32
- "react-i18next": "^11.16.9",
33
- "react-router-dom": "^6.3.0",
34
- "reactstrap": "^9.0.1",
35
- "yup": "^0.32.11"
36
- },
37
- "devDependencies": {
38
- "@babel/core": "^7.26.0",
39
- "@babel/preset-env": "^7.26.0",
40
- "@babel/preset-typescript": "^7.26.0",
24
+ "dependencies": {
41
25
  "@hookform/resolvers": "^2.8.10",
42
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
43
26
  "@types/react-resizable": "^3.0.7",
44
- "babel-loader": "^9.2.1",
45
27
  "becoxy-icons": "1.8.1",
46
28
  "classnames": "2.3.1",
47
- "css-loader": "^7.1.2",
48
- "html-webpack-plugin": "^5.5.1",
49
- "react-hook-form": "^7.43.9",
29
+ "react-hook-form": "7.43.9",
50
30
  "react-hot-toast": "2.2.0",
31
+ "i18next": "^21.8.2",
51
32
  "react-i18next": "^11.16.9",
52
- "react-number-format": "^5.3.3",
53
- "react-refresh": "^0.14.0",
54
33
  "react-resizable": "^3.0.5",
55
34
  "react-router-dom": "^6.3.0",
56
35
  "reactstrap": "9.0.1",
57
- "sass": "^1.81.0",
58
- "sass-loader": "^16.0.3",
59
- "style-loader": "^4.0.0",
60
36
  "sweetalert2": "^11.4.14",
61
37
  "sweetalert2-react-content": "^5.0.0",
62
- "ts-loader": "^9.4.2",
63
- "typescript": "^5.6.3",
64
- "webpack": "^5.88.2",
65
- "webpack-cli": "^5.1.4",
66
- "webpack-dev-server": "^4.15.0",
38
+ "react-number-format": "^5.3.3",
67
39
  "yup": "^0.32.11"
40
+ },
41
+ "peerDependencies": {
42
+ "react": ">=16.8.6",
43
+ "react-dom": ">=16.8.6"
44
+ },
45
+ "devDependencies": {
46
+ "tsup": "^8.0.2",
47
+ "typescript": "^5.6.3"
68
48
  }
69
49
  }