@biglogic/rgs 3.7.8 → 3.7.9

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 +29 -20
package/package.json CHANGED
@@ -1,8 +1,24 @@
1
1
  {
2
2
  "name": "@biglogic/rgs",
3
- "version": "3.7.8",
3
+ "version": "3.7.9",
4
+ "license": "MIT",
4
5
  "description": "Argis (RGS) - Reactive Global State: A react state everywhere made easy",
5
6
  "type": "module",
7
+ "main": "./index.js",
8
+ "types": "./index.d.ts",
9
+ "typings": "./types/*",
10
+ "homepage": "https://github.com/BigLogic-ca/rgs",
11
+ "engines": {
12
+ "node": ">=16.0.0"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public",
16
+ "registry": "https://registry.npmjs.org/",
17
+ "provenance": true
18
+ },
19
+ "files": [
20
+ "**/*"
21
+ ],
6
22
  "keywords": [
7
23
  "rgs",
8
24
  "gstate",
@@ -17,19 +33,7 @@
17
33
  "react-globo-state",
18
34
  "argis"
19
35
  ],
20
- "homepage": "https://github.com/BigLogic-ca/rgs",
21
- "bugs": {
22
- "url": "https://github.com/BigLogic-ca/rgs/issues"
23
- },
24
- "publishConfig": {
25
- "access": "public",
26
- "registry": "https://registry.npmjs.org/",
27
- "provenance": true
28
- },
29
- "files": [
30
- "**/*"
31
- ],
32
- "license": "MIT",
36
+ "copyright": "Dario Passariello",
33
37
  "author": "Dario Passariello <dariopassariello@gmail.com>",
34
38
  "contributors": [
35
39
  {
@@ -50,10 +54,13 @@
50
54
  "type": "git",
51
55
  "url": "git+https://github.com/BigLogic-ca/rgs.git"
52
56
  },
53
- "main": "./index.js",
54
- "types": "./index.d.ts",
55
- "engines": {
56
- "node": ">=16.0.0"
57
+ "bugs": {
58
+ "url": "https://github.com/BigLogic-ca/rgs/issues"
59
+ },
60
+ "support": {
61
+ "name": "Dario Passariello",
62
+ "url": "https://github.com/passariello/",
63
+ "email": "dariopassariello@gmail.com"
57
64
  },
58
65
  "scripts": {
59
66
  "dev": "npm run build:watch",
@@ -66,6 +73,9 @@
66
73
  "tsc": "cd tests && tsc --noEmit",
67
74
  "test": "cd tests && npm test"
68
75
  },
76
+ "dependencies": {
77
+ "immer": "11.1.4"
78
+ },
69
79
  "devDependencies": {
70
80
  "@types/node": "^25.3.3",
71
81
  "@types/react": "^19.2.14",
@@ -73,10 +83,9 @@
73
83
  "esbuild": "0.27.3",
74
84
  "esbuild-node-externals": "1.20.1",
75
85
  "esbuild-plugin-copy": "2.1.1",
76
- "immer": "11.1.4",
77
86
  "react": "^19.2.4",
78
87
  "react-dom": "^19.2.4",
79
88
  "tslib": "^2.8.1",
80
89
  "typescript": "^5.9.3"
81
90
  }
82
- }
91
+ }