react-rock 3.1.10 → 3.1.11

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 (1) hide show
  1. package/package.json +4 -17
package/package.json CHANGED
@@ -1,24 +1,11 @@
1
1
  {
2
2
  "name": "react-rock",
3
- "version": "3.1.10",
3
+ "version": "3.1.11",
4
4
  "author": "Naxrul Ahmed",
5
5
  "description": "React-Rock is a modern, lightweight state management library designed to simplify handling global state in React applications. With a minimal API and powerful features like freezing data updates for optimized re-renders, React-Rock allows you to manage state more efficiently while ensuring your app remains fast and responsive.",
6
- "main": "./index.js",
7
- "module": "./esm/index.js",
6
+ "main": "./cjs/index.js",
7
+ "module": "./index.js",
8
8
  "types": "./types/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./types/index.d.ts",
12
- "import": "./index.js",
13
- "require": "./cjs/index.js"
14
- },
15
- "./types/*": "./types/*.d.ts",
16
- "./cjs/*": "./cjs/*.js",
17
- "./*": {
18
- "import": "./*.js",
19
- "require": "./cjs/*.js"
20
- }
21
- },
22
9
  "scripts": {
23
10
  "start": "makepack start",
24
11
  "build": "makepack build",
@@ -38,7 +25,7 @@
38
25
  "devDependencies": {
39
26
  "@types/react": "^19.0.2",
40
27
  "@types/react-dom": "^19.0.2",
41
- "makepack": "^1.5.5",
28
+ "makepack": "^1.5.24",
42
29
  "react": "^19.0.0",
43
30
  "react-dom": "^19.0.0",
44
31
  "typescript": "^4.4.2"