react-essentials-functions 1.0.0 → 1.0.2

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 +1 -1
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -10,4 +10,4 @@ yarn add react-essentials-functions
10
10
 
11
11
  ## Usage
12
12
 
13
- Documentation is in progress...
13
+ Documentation is in progress... For now, you can check the source code of the components and hooks.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-essentials-functions",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "author": "maxgfr",
5
5
  "license": "MIT",
6
6
  "description": "A collection of zero-dependencies useful hooks and components for React",
@@ -20,12 +20,13 @@
20
20
  "hooks",
21
21
  "react",
22
22
  "components",
23
- "useful"
23
+ "useful",
24
+ "zero-dependencies"
24
25
  ],
25
26
  "scripts": {
26
27
  "dev": "nodemon",
27
28
  "develop": "node -r @swc-node/register ./src/index.ts",
28
- "test": "jest",
29
+ "test": "jest --passWithNoTests",
29
30
  "test:watch": "jest --watch",
30
31
  "clean": "rimraf build",
31
32
  "build": "tsc -p tsconfig.build.json",
@@ -86,6 +87,8 @@
86
87
  "jest-environment-jsdom": "^29.3.0",
87
88
  "nodemon": "2.0.20",
88
89
  "prettier": "2.7.1",
90
+ "react": "^18.2.0",
91
+ "react-dom": "^18.2.0",
89
92
  "rimraf": "3.0.2",
90
93
  "semantic-release": "^19.0.5",
91
94
  "typescript": "^4.8.4"