react-hrnet-table-gandrica 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +20 -13
package/README.md CHANGED
@@ -15,8 +15,9 @@ This plugin features its own isolated Redux state management to avoid conflicts
15
15
 
16
16
  To use this plugin, your project must have the following installed:
17
17
 
18
- - **Node.js**: v16.0.0 or higher
19
- - **React & ReactDOM**: v18.0.0 or higher
18
+ - **VSCode** -code editor(optional)
19
+ - **Node.js**: v16.0.0 or higher - Required as peer dependencies.
20
+ - **React & ReactDOM**: v18.0.0 or higher - Required as peer dependencies.
20
21
  - **Redux Toolkit & React-Redux**: Required as peer dependencies.
21
22
 
22
23
  ## 🛠️ Installation
package/package.json CHANGED
@@ -1,6 +1,17 @@
1
1
  {
2
2
  "name": "react-hrnet-table-gandrica",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
+ "description": "A lightweight and functional React data table component with internal Redux state, built for the HRNet application.",
5
+ "author": "Gabriel ANDRICA",
6
+ "keywords": [
7
+ "react",
8
+ "datatable",
9
+ "table",
10
+ "hrnet",
11
+ "openclassrooms",
12
+ "pagination",
13
+ "sort"
14
+ ],
4
15
  "private": false,
5
16
  "type": "module",
6
17
  "main": "dist/react-hrnet-table.umd.js",
@@ -20,24 +31,17 @@
20
31
  "dev": "vite",
21
32
  "build": "vite build",
22
33
  "lint": "eslint .",
23
- "preview": "vite preview",
24
- "test": "vitest"
34
+ "preview": "vite preview"
25
35
  },
26
36
  "peerDependencies": {
37
+ "@reduxjs/toolkit": "^1.9.0 || ^2.0.0",
27
38
  "react": "^18.2.0 || ^19.0.0",
28
39
  "react-dom": "^18.2.0 || ^19.0.0",
29
- "@reduxjs/toolkit": "^1.9.0 || ^2.0.0",
30
40
  "react-redux": "^8.0.0 || ^9.0.0"
31
41
  },
32
42
  "devDependencies": {
33
- "@reduxjs/toolkit": "^2.12.0",
34
- "react": "^19.2.8",
35
- "react-dom": "^19.2.8",
36
- "react-redux": "^9.3.0",
37
- "sass": "^1.102.0",
38
43
  "@eslint/js": "^10.0.1",
39
- "@testing-library/jest-dom": "^7.0.1",
40
- "@testing-library/react": "^16.3.2",
44
+ "@reduxjs/toolkit": "^2.12.0",
41
45
  "@types/react": "^19.2.17",
42
46
  "@types/react-dom": "^19.2.3",
43
47
  "@vitejs/plugin-react": "^6.0.4",
@@ -46,7 +50,10 @@
46
50
  "eslint-plugin-react-refresh": "^0.5.3",
47
51
  "globals": "^17.7.0",
48
52
  "jsdom": "^29.1.1",
49
- "vite": "^8.2.0",
50
- "vitest": "^4.1.10"
53
+ "react": "^19.2.8",
54
+ "react-dom": "^19.2.8",
55
+ "react-redux": "^9.3.0",
56
+ "sass": "^1.102.0",
57
+ "vite": "^8.2.0"
51
58
  }
52
59
  }