@thi.ng/rstream-query 2.1.198 → 2.1.202
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 +114 -114
- package/CHANGELOG.md +0 -60
package/package.json
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
2
|
+
"name": "@thi.ng/rstream-query",
|
|
3
|
+
"version": "2.1.202",
|
|
4
|
+
"description": "@thi.ng/rstream based triple store & reactive query engine",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./index.js",
|
|
7
|
+
"typings": "./index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://thi.ng/rstream-query",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "yarn build:esbuild && yarn build:decl",
|
|
32
|
+
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
33
|
+
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
34
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
35
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
36
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
37
|
+
"pub": "npm publish --access public",
|
|
38
|
+
"test": "bun test",
|
|
39
|
+
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@thi.ng/api": "^8.12.6",
|
|
43
|
+
"@thi.ng/associative": "^7.1.16",
|
|
44
|
+
"@thi.ng/checks": "^3.7.22",
|
|
45
|
+
"@thi.ng/equiv": "^2.1.96",
|
|
46
|
+
"@thi.ng/errors": "^2.5.46",
|
|
47
|
+
"@thi.ng/logger": "^3.2.5",
|
|
48
|
+
"@thi.ng/math": "^5.13.3",
|
|
49
|
+
"@thi.ng/rstream": "^9.3.3",
|
|
50
|
+
"@thi.ng/rstream-dot": "^3.0.152",
|
|
51
|
+
"@thi.ng/transducers": "^9.6.14"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"esbuild": "^0.25.11",
|
|
55
|
+
"typedoc": "^0.28.14",
|
|
56
|
+
"typescript": "^5.9.3"
|
|
57
|
+
},
|
|
58
|
+
"keywords": [
|
|
59
|
+
"database",
|
|
60
|
+
"dataflow",
|
|
61
|
+
"datalog",
|
|
62
|
+
"datastructure",
|
|
63
|
+
"graph",
|
|
64
|
+
"query",
|
|
65
|
+
"reactive",
|
|
66
|
+
"rstream",
|
|
67
|
+
"semantic-web",
|
|
68
|
+
"stream",
|
|
69
|
+
"subscription",
|
|
70
|
+
"triples",
|
|
71
|
+
"typescript"
|
|
72
|
+
],
|
|
73
|
+
"publishConfig": {
|
|
74
|
+
"access": "public"
|
|
75
|
+
},
|
|
76
|
+
"engines": {
|
|
77
|
+
"node": ">=18"
|
|
78
|
+
},
|
|
79
|
+
"files": [
|
|
80
|
+
"./*.js",
|
|
81
|
+
"./*.d.ts"
|
|
82
|
+
],
|
|
83
|
+
"exports": {
|
|
84
|
+
".": {
|
|
85
|
+
"default": "./index.js"
|
|
86
|
+
},
|
|
87
|
+
"./api": {
|
|
88
|
+
"default": "./api.js"
|
|
89
|
+
},
|
|
90
|
+
"./convert": {
|
|
91
|
+
"default": "./convert.js"
|
|
92
|
+
},
|
|
93
|
+
"./logger": {
|
|
94
|
+
"default": "./logger.js"
|
|
95
|
+
},
|
|
96
|
+
"./pattern": {
|
|
97
|
+
"default": "./pattern.js"
|
|
98
|
+
},
|
|
99
|
+
"./qvar": {
|
|
100
|
+
"default": "./qvar.js"
|
|
101
|
+
},
|
|
102
|
+
"./store": {
|
|
103
|
+
"default": "./store.js"
|
|
104
|
+
},
|
|
105
|
+
"./xforms": {
|
|
106
|
+
"default": "./xforms.js"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"thi.ng": {
|
|
110
|
+
"alias": "rsq",
|
|
111
|
+
"parent": "@thi.ng/rstream",
|
|
112
|
+
"year": 2018
|
|
113
|
+
},
|
|
114
|
+
"gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
|
|
115
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
- **Last updated**: 2025-09-01T16:38:35Z
|
|
4
|
-
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
-
|
|
6
|
-
All notable changes to this project will be documented in this file.
|
|
7
|
-
Only versions published since **2022-01-01** are listed here.
|
|
8
|
-
Please consult the Git history for older version information.
|
|
9
|
-
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
10
|
-
|
|
11
|
-
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
|
-
and/or version bumps of transitive dependencies.
|
|
13
|
-
|
|
14
|
-
### [2.1.140](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.140) (2024-08-20)
|
|
15
|
-
|
|
16
|
-
#### ♻️ Refactoring
|
|
17
|
-
|
|
18
|
-
- update internal close mode handling (33b1d16f34) ([adb89d5](https://github.com/thi-ng/umbrella/commit/adb89d5))
|
|
19
|
-
|
|
20
|
-
### [2.1.127](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.127) (2024-06-21)
|
|
21
|
-
|
|
22
|
-
#### ♻️ Refactoring
|
|
23
|
-
|
|
24
|
-
- enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
|
|
25
|
-
|
|
26
|
-
### [2.1.123](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.123) (2024-04-20)
|
|
27
|
-
|
|
28
|
-
#### ♻️ Refactoring
|
|
29
|
-
|
|
30
|
-
- update type usage ([a216a9b](https://github.com/thi-ng/umbrella/commit/a216a9b))
|
|
31
|
-
|
|
32
|
-
### [2.1.121](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.121) (2024-04-08)
|
|
33
|
-
|
|
34
|
-
#### ♻️ Refactoring
|
|
35
|
-
|
|
36
|
-
- update reducer handling due to updates in [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/main/packages/transducers) pkg ([e0e5654](https://github.com/thi-ng/umbrella/commit/e0e5654))
|
|
37
|
-
|
|
38
|
-
### [2.1.102](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.102) (2024-02-16)
|
|
39
|
-
|
|
40
|
-
#### ♻️ Refactoring
|
|
41
|
-
|
|
42
|
-
- update LOGGER handling ([fc1df24](https://github.com/thi-ng/umbrella/commit/fc1df24))
|
|
43
|
-
|
|
44
|
-
### [2.1.81](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.81) (2023-11-09)
|
|
45
|
-
|
|
46
|
-
#### ♻️ Refactoring
|
|
47
|
-
|
|
48
|
-
- update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
|
|
49
|
-
|
|
50
|
-
### [2.1.50](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.50) (2023-04-08)
|
|
51
|
-
|
|
52
|
-
#### ♻️ Refactoring
|
|
53
|
-
|
|
54
|
-
- update TripleStore.toDot() impl ([303a730](https://github.com/thi-ng/umbrella/commit/303a730))
|
|
55
|
-
|
|
56
|
-
### [2.1.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.7) (2022-04-07)
|
|
57
|
-
|
|
58
|
-
#### ♻️ Refactoring
|
|
59
|
-
|
|
60
|
-
- replace deprecated .substr() w/ .substring() ([0710509](https://github.com/thi-ng/umbrella/commit/0710509))
|