@biglogic/rgs 3.7.2 → 3.7.3
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/package.json +7 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biglogic/rgs",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.3",
|
|
4
4
|
"description": "Argis (RGS) - Reactive Global State: A react state everywhere made easy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -60,33 +60,17 @@
|
|
|
60
60
|
"provenance": false
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
|
+
"dev": "npm run build:watch",
|
|
63
64
|
"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",
|
|
64
65
|
"build:watch": "node ./esbuild.config.mjs --watch",
|
|
65
66
|
"build:extension": "cd vscode-extension && vsce package -o ../dist/rgs-extension.vsix",
|
|
66
|
-
"dev": "npm run build:watch",
|
|
67
67
|
"lint": "cd tests && npm run lint",
|
|
68
68
|
"tsc": "cd tests && tsc --noEmit",
|
|
69
|
+
"test": "cd tests && npm test",
|
|
69
70
|
"npm:pack": "npm run build && cd dist && npm pack",
|
|
70
71
|
"npm:publish": "npm run build && npm run build:extension && cd dist && npm publish --access=public"
|
|
71
72
|
},
|
|
72
|
-
"peerDependencies": {
|
|
73
|
-
"react": ">=16.8.0",
|
|
74
|
-
"react-dom": ">=16.8.0"
|
|
75
|
-
},
|
|
76
|
-
"peerDependenciesMeta": {
|
|
77
|
-
"react": {
|
|
78
|
-
"optional": false
|
|
79
|
-
},
|
|
80
|
-
"react-dom": {
|
|
81
|
-
"optional": false
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"dependencies": {
|
|
85
|
-
"memorio": "^2.5.0",
|
|
86
|
-
"immer": "^11.1.4"
|
|
87
|
-
},
|
|
88
73
|
"devDependencies": {
|
|
89
|
-
"@types/jest": "30.0.0",
|
|
90
74
|
"@types/node": "^25.3.2",
|
|
91
75
|
"@types/react": "^19.2.14",
|
|
92
76
|
"@types/react-dom": "^19.2.3",
|
|
@@ -96,10 +80,12 @@
|
|
|
96
80
|
"esbuild-plugin-copy": "2.1.1",
|
|
97
81
|
"esbuild-sass-plugin": "3.6.0",
|
|
98
82
|
"esbuild-scss-modules-plugin": "1.1.1",
|
|
83
|
+
"immer": "11.1.4",
|
|
84
|
+
"memorio": "2.5.0",
|
|
99
85
|
"react": "^19.2.4",
|
|
100
86
|
"react-dom": "^19.2.4",
|
|
101
|
-
"ts-jest": "29.
|
|
87
|
+
"ts-jest": "29.2.5",
|
|
102
88
|
"tslib": "^2.8.1",
|
|
103
89
|
"typescript": "^5.9.3"
|
|
104
90
|
}
|
|
105
|
-
}
|
|
91
|
+
}
|