@rs-x/core 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 +616 -0
- package/dist/index.js +2222 -0
- package/package.json +65 -0
- package/readme.md +1184 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rs-x/core",
|
|
3
|
+
"version": "0.4.4",
|
|
4
|
+
"description": "Core reactive primitives, dependency injection, and state foundations for the RS-X framework",
|
|
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
|
+
"dependencies": {
|
|
32
|
+
"fast-equals": "^5.3.2",
|
|
33
|
+
"inversify": "^7.1.0",
|
|
34
|
+
"reflect-metadata": "^0.2.2",
|
|
35
|
+
"lodash.clonedeepwith": "^4.5.0"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"rxjs": "^7.8.2"
|
|
39
|
+
},
|
|
40
|
+
"peerDependenciesMeta": {
|
|
41
|
+
"rxjs": {
|
|
42
|
+
"optional": false
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"tsup": "^8.5.1",
|
|
47
|
+
"rimraf": "^6.1.2"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=24"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"rs-x",
|
|
54
|
+
"reactive",
|
|
55
|
+
"state-management",
|
|
56
|
+
"dependency-injection",
|
|
57
|
+
"observable",
|
|
58
|
+
"typescript",
|
|
59
|
+
"framework-core"
|
|
60
|
+
],
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup lib/index.ts --format esm --dts --tsconfig ../tsconfig.build.json",
|
|
63
|
+
"clean": "rimraf dist"
|
|
64
|
+
}
|
|
65
|
+
}
|