@rs-x/state-manager 0.4.4
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/LICENSE +21 -0
- package/dist/index.d.ts +683 -0
- package/dist/index.js +3219 -0
- package/package.json +56 -0
- package/readme.md +1765 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rs-x/state-manager",
|
|
3
|
+
"version": "0.4.4",
|
|
4
|
+
"description": "Reactive state management layer for the RS-X framework with fine-grained change tracking",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/robert-sanders-software-ontwikkeling/rs-x",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x/issues"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public",
|
|
29
|
+
"provenance": true
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"rxjs": "^7.8.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@rs-x/core": "0.4.4"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"tsup": "^8.5.1",
|
|
39
|
+
"rimraf": "^6.1.2"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=24"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"rs-x",
|
|
46
|
+
"state-management",
|
|
47
|
+
"reactive",
|
|
48
|
+
"observable",
|
|
49
|
+
"fine-grained",
|
|
50
|
+
"typescript"
|
|
51
|
+
],
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsup lib/index.ts --format esm --dts --tsconfig ../tsconfig.build.json",
|
|
54
|
+
"clean": "rimraf dist"
|
|
55
|
+
}
|
|
56
|
+
}
|