@biglogic/rgs 3.7.8 → 3.8.0

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/README.md CHANGED
@@ -462,7 +462,7 @@ store._addPlugin(undoRedoPlugin())
462
462
 
463
463
  ## 📄 License
464
464
 
465
- MIT © [Dario Passariello](https://github.com/dpassariello)
465
+ MIT © [Dario Passariello](https://github.com/passariello)
466
466
 
467
467
  ---
468
468
 
package/docs/README.md CHANGED
@@ -462,7 +462,7 @@ store._addPlugin(undoRedoPlugin())
462
462
 
463
463
  ## 📄 License
464
464
 
465
- MIT © [Dario Passariello](https://github.com/dpassariello)
465
+ MIT © [Dario Passariello](https://github.com/passariello)
466
466
 
467
467
  ---
468
468
 
@@ -276,7 +276,7 @@ If you relied on `addAccessRule()` from the global export to affect a `createSto
276
276
 
277
277
  ## Need Help?
278
278
 
279
- - **Issues:** [GitHub Issues](https://github.com/dpassariello/rgs/issues)
279
+ - **Issues:** [GitHub Issues](https://github.com/@biglogic/rgs/issues)
280
280
  - **Docs:** [Galaxy Documentation](../SUMMARY.md)
281
281
 
282
282
  ---
package/package.json CHANGED
@@ -1,8 +1,24 @@
1
1
  {
2
2
  "name": "@biglogic/rgs",
3
- "version": "3.7.8",
3
+ "version": "3.8.0",
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,22 +54,26 @@
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",
60
67
  "build": "node -e \"const fs=require('fs');if(fs.existsSync('./dist'))fs.rmSync('./dist',{recursive:true});\" && node ./esbuild.config.mjs && npx tsc -p tsconfig.json --emitDeclarationOnly",
61
68
  "build:watch": "node ./esbuild.config.mjs --watch",
62
69
  "build:extension": "cd vscode-extension && vsce package -o ../dist/rgs-extension.vsix",
63
- "npm:pack": "npm run build && cd dist && npm pack",
64
- "npm:publish": "npm run build && npm run build:extension && cd dist && npm publish --access=public",
65
70
  "lint": "cd tests && npm run lint",
66
71
  "tsc": "cd tests && tsc --noEmit",
67
72
  "test": "cd tests && npm test"
68
73
  },
74
+ "dependencies": {
75
+ "immer": "11.1.4"
76
+ },
69
77
  "devDependencies": {
70
78
  "@types/node": "^25.3.3",
71
79
  "@types/react": "^19.2.14",
@@ -73,7 +81,6 @@
73
81
  "esbuild": "0.27.3",
74
82
  "esbuild-node-externals": "1.20.1",
75
83
  "esbuild-plugin-copy": "2.1.1",
76
- "immer": "11.1.4",
77
84
  "react": "^19.2.4",
78
85
  "react-dom": "^19.2.4",
79
86
  "tslib": "^2.8.1",