@thi.ng/resolve-map 5.0.7 → 5.1.2
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/CHANGELOG.md +146 -71
- package/README.md +1 -1
- package/package.json +77 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,139 +1,214 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
- **Last updated**: 2021-11-21T17:09:28Z
|
|
4
|
+
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
+
|
|
3
6
|
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
7
|
+
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
8
|
+
|
|
9
|
+
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
|
+
and/or version bumps of transitive dependencies.
|
|
11
|
+
|
|
12
|
+
## [5.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.1.0) (2021-11-17)
|
|
5
13
|
|
|
6
|
-
|
|
14
|
+
#### 🚀 Features
|
|
7
15
|
|
|
8
|
-
|
|
16
|
+
- Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
|
|
17
|
+
Improving the overall build ergonomics
|
|
18
|
+
- introduced a tools workspaces
|
|
19
|
+
- imported it in all needed packages/examples
|
|
20
|
+
- inclusive project root
|
|
9
21
|
|
|
22
|
+
#### ♻️ Refactoring
|
|
10
23
|
|
|
24
|
+
- testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
|
|
25
|
+
this commit reverts (partly) changes made in:
|
|
26
|
+
ef346d7a8753590dc9094108a3d861a8dbd5dd2c
|
|
27
|
+
overall purpose is better testament ergonomics:
|
|
28
|
+
instead of having to pass NODE_OPTIONS with every invocation
|
|
29
|
+
having a binary to handle this for us.
|
|
11
30
|
|
|
31
|
+
### [5.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.0.1) (2021-10-13)
|
|
12
32
|
|
|
33
|
+
#### ♻️ Refactoring
|
|
13
34
|
|
|
14
|
-
|
|
35
|
+
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
15
36
|
|
|
37
|
+
# [5.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.0.0) (2021-10-12)
|
|
16
38
|
|
|
17
|
-
|
|
39
|
+
#### 🛑 Breaking changes
|
|
18
40
|
|
|
19
|
-
|
|
41
|
+
- major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
|
|
42
|
+
- BREAKING CHANGE: discontinue CommonJS & UMD versions
|
|
43
|
+
- only ESM modules will be published from now on
|
|
44
|
+
- CJS obsolete due to ESM support in recent versions of node:
|
|
45
|
+
- i.e. launch NodeJS via:
|
|
46
|
+
- `node --experimental-specifier-resolution=node --experimental-repl-await`
|
|
47
|
+
- in the node REPL use `await import(...)` instead of `require()`
|
|
48
|
+
- UMD obsolete due to widespread browser support for ESM
|
|
49
|
+
Also:
|
|
50
|
+
- normalize/restructure/reorg all package.json files
|
|
51
|
+
- cleanup all build scripts, remove obsolete
|
|
52
|
+
- switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
|
|
20
53
|
|
|
54
|
+
#### ♻️ Refactoring
|
|
21
55
|
|
|
22
|
-
|
|
56
|
+
- update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
|
|
57
|
+
- largely related to recent updates/restructuring of these packages:
|
|
58
|
+
- api
|
|
59
|
+
- defmulti
|
|
60
|
+
- errors
|
|
61
|
+
- logger
|
|
62
|
+
- update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
|
|
63
|
+
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
64
|
+
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
23
65
|
|
|
24
|
-
|
|
66
|
+
### [4.2.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.2.9) (2020-12-07)
|
|
25
67
|
|
|
26
|
-
|
|
27
|
-
- CJS obsolete due to ESM support in recent versions of node:
|
|
28
|
-
- i.e. launch NodeJS via:
|
|
29
|
-
- `node --experimental-specifier-resolution=node --experimental-repl-await`
|
|
30
|
-
- in the node REPL use `await import(...)` instead of `require()`
|
|
31
|
-
- UMD obsolete due to widespread browser support for ESM
|
|
68
|
+
#### ♻️ Refactoring
|
|
32
69
|
|
|
33
|
-
|
|
34
|
-
- normalize/restructure/reorg all package.json files
|
|
35
|
-
- cleanup all build scripts, remove obsolete
|
|
36
|
-
- switch from mocha to @thi.ng/testament for all tests
|
|
70
|
+
- update type-only imports in various tests/pkgs ([3fd9c24](https://github.com/thi-ng/umbrella/commit/3fd9c24))
|
|
37
71
|
|
|
72
|
+
## [4.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.2.0) (2020-07-18)
|
|
38
73
|
|
|
74
|
+
#### 🚀 Features
|
|
39
75
|
|
|
76
|
+
- add support for custom lookup prefix ([bf89503](https://github.com/thi-ng/umbrella/commit/bf89503))
|
|
77
|
+
- add tests
|
|
40
78
|
|
|
79
|
+
### [4.1.16](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.16) (2020-03-28)
|
|
41
80
|
|
|
81
|
+
#### ♻️ Refactoring
|
|
42
82
|
|
|
43
|
-
|
|
83
|
+
- update to new [@thi.ng/paths](https://github.com/thi-ng/umbrella/tree/main/packages/paths) API ([182b36b](https://github.com/thi-ng/umbrella/commit/182b36b))
|
|
44
84
|
|
|
45
|
-
###
|
|
85
|
+
### [4.1.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.2) (2019-07-08)
|
|
46
86
|
|
|
47
|
-
|
|
87
|
+
#### 🩹 Bug fixes
|
|
48
88
|
|
|
49
|
-
|
|
89
|
+
- fix [#97](https://github.com/thi-ng/umbrella/issues/97), update to consider trailing comma & whitespace ([de9532b](https://github.com/thi-ng/umbrella/commit/de9532b))
|
|
90
|
+
- add more tests
|
|
50
91
|
|
|
51
|
-
###
|
|
92
|
+
### [4.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.1) (2019-07-08)
|
|
52
93
|
|
|
53
|
-
|
|
94
|
+
#### 🩹 Bug fixes
|
|
54
95
|
|
|
55
|
-
|
|
96
|
+
- fix [#97](https://github.com/thi-ng/umbrella/issues/97), update fn arg destructuring ([e68dc19](https://github.com/thi-ng/umbrella/commit/e68dc19))
|
|
97
|
+
- update resolveFunction() to allow trailing comma in destructure form, e.g. `{ a, b, }`
|
|
98
|
+
- add test case
|
|
56
99
|
|
|
57
|
-
|
|
100
|
+
## [4.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.0) (2019-07-07)
|
|
58
101
|
|
|
59
|
-
|
|
102
|
+
#### 🚀 Features
|
|
60
103
|
|
|
61
|
-
|
|
104
|
+
- enable TS strict compiler flags (refactor) ([7e7ff2a](https://github.com/thi-ng/umbrella/commit/7e7ff2a))
|
|
62
105
|
|
|
63
|
-
|
|
106
|
+
#### ♻️ Refactoring
|
|
64
107
|
|
|
65
|
-
-
|
|
108
|
+
- address TS strictNullChecks flag ([fa7b252](https://github.com/thi-ng/umbrella/commit/fa7b252))
|
|
66
109
|
|
|
67
|
-
#
|
|
110
|
+
# [4.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.0.0) (2019-01-21)
|
|
68
111
|
|
|
69
|
-
|
|
112
|
+
#### 🛑 Breaking changes
|
|
70
113
|
|
|
71
114
|
- update package build scripts & outputs, imports in ~50 packages ([b54b703](https://github.com/thi-ng/umbrella/commit/b54b703))
|
|
115
|
+
- BREAKING CHANGE: enabled multi-outputs (ES6 modules, CJS, UMD)
|
|
116
|
+
- build scripts now first build ES6 modules in package root, then call
|
|
117
|
+
`scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
|
|
118
|
+
- all imports MUST be updated to only refer to package level
|
|
119
|
+
(not individual files anymore). tree shaking in user land will get rid of
|
|
120
|
+
all unused imported symbols.
|
|
121
|
+
|
|
122
|
+
### [3.0.10](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.10) (2018-09-01)
|
|
123
|
+
|
|
124
|
+
#### 🩹 Bug fixes
|
|
72
125
|
|
|
73
|
-
|
|
126
|
+
- deep resolve of yet unknown path values ([a710453](https://github.com/thi-ng/umbrella/commit/a710453))
|
|
74
127
|
|
|
75
|
-
|
|
76
|
-
- build scripts now first build ES6 modules in package root, then call `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
|
|
77
|
-
- all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.
|
|
128
|
+
### [3.0.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.8) (2018-08-24)
|
|
78
129
|
|
|
79
|
-
|
|
130
|
+
#### ♻️ Refactoring
|
|
80
131
|
|
|
81
|
-
|
|
132
|
+
- replace SEMAPHORE const w/ [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) def ([bea7a1f](https://github.com/thi-ng/umbrella/commit/bea7a1f))
|
|
82
133
|
|
|
83
|
-
|
|
134
|
+
### [3.0.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.5) (2018-07-15)
|
|
84
135
|
|
|
85
|
-
|
|
136
|
+
#### 🩹 Bug fixes
|
|
86
137
|
|
|
87
|
-
|
|
138
|
+
- add support for alt ES6 destructure form `{a: b}` ([2482945](https://github.com/thi-ng/umbrella/commit/2482945))
|
|
139
|
+
- also fixes issue w/ minimized builds
|
|
88
140
|
|
|
89
|
-
|
|
141
|
+
# [3.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.0) (2018-06-07)
|
|
90
142
|
|
|
91
|
-
|
|
143
|
+
#### 🛑 Breaking changes
|
|
92
144
|
|
|
93
|
-
|
|
145
|
+
- add cycle detection, fix edge cases ([e61c3b5](https://github.com/thi-ng/umbrella/commit/e61c3b5))
|
|
146
|
+
- add `resolve()` as main user function
|
|
147
|
+
- make `resolveMap()` private
|
|
148
|
+
- update _resolve() to keep track of active lookups
|
|
149
|
+
- implement cycle detection
|
|
150
|
+
- add markResolved() helper
|
|
151
|
+
- update resolveFunction() to mark all of its nested
|
|
152
|
+
values as resolved
|
|
153
|
+
- refactor resolvePath()
|
|
154
|
+
- update docs/readme
|
|
155
|
+
- add/update tests
|
|
156
|
+
- BREAKING CHANGE: `resolveMap()` renamed to `resolve()`, update docs
|
|
94
157
|
|
|
95
|
-
|
|
96
|
-
- **resolve-map:** add ES6 destructuring shorthands for function vals ([57f1ed5](https://github.com/thi-ng/umbrella/commit/57f1ed5))
|
|
158
|
+
#### 🚀 Features
|
|
97
159
|
|
|
98
|
-
|
|
160
|
+
- add ES6 destructuring shorthands for function vals ([57f1ed5](https://github.com/thi-ng/umbrella/commit/57f1ed5))
|
|
161
|
+
- add _resolveFunction()
|
|
162
|
+
- add tests
|
|
163
|
+
- update docs & readme
|
|
99
164
|
|
|
100
|
-
-
|
|
165
|
+
### [2.0.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.6) (2018-06-06)
|
|
101
166
|
|
|
102
|
-
|
|
167
|
+
#### 🩹 Bug fixes
|
|
103
168
|
|
|
104
|
-
|
|
169
|
+
- also use _resolvePath for plain lookups, optimize ([48c796f](https://github.com/thi-ng/umbrella/commit/48c796f))
|
|
170
|
+
- rename _resolveDeep => _resolvePath
|
|
171
|
+
- update docs
|
|
172
|
+
- add private _resolveDeep ([558f4f8](https://github.com/thi-ng/umbrella/commit/558f4f8))
|
|
173
|
+
- fixes resolution issue if a function dynamically created deep values
|
|
105
174
|
|
|
106
|
-
|
|
107
|
-
- **resolve-map:** also use_resolvePath for plain lookups, optimize ([48c796f](https://github.com/thi-ng/umbrella/commit/48c796f))
|
|
175
|
+
#### ♻️ Refactoring
|
|
108
176
|
|
|
109
|
-
|
|
177
|
+
- export absPath(), add LookupPath type alias ([dc6e0ac](https://github.com/thi-ng/umbrella/commit/dc6e0ac))
|
|
110
178
|
|
|
111
|
-
###
|
|
179
|
+
### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.1) (2018-05-10)
|
|
112
180
|
|
|
113
|
-
|
|
181
|
+
#### ♻️ Refactoring
|
|
114
182
|
|
|
115
|
-
|
|
183
|
+
- update deps & imports in all packages due to [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) split ([bc45636](https://github.com/thi-ng/umbrella/commit/bc45636))
|
|
116
184
|
|
|
117
|
-
-
|
|
118
|
-
- lookup paths now are prefixed with `@` instead of `->`
|
|
119
|
-
- all path segments must be separated by `/`
|
|
120
|
-
- update readme & tests
|
|
185
|
+
# [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.0) (2018-05-09)
|
|
121
186
|
|
|
122
|
-
|
|
187
|
+
#### 🛑 Breaking changes
|
|
123
188
|
|
|
124
|
-
|
|
189
|
+
- fix [#21](https://github.com/thi-ng/umbrella/issues/21) ([5d2a3fe](https://github.com/thi-ng/umbrella/commit/5d2a3fe))
|
|
190
|
+
- BREAKING CHANGE: update lookup path prefix & separators
|
|
191
|
+
- lookup paths now are prefixed with `@` instead of `->`
|
|
192
|
+
- all path segments must be separated by `/`
|
|
193
|
+
- update readme & tests
|
|
125
194
|
|
|
126
|
-
|
|
195
|
+
# [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@1.0.0) (2018-04-16)
|
|
127
196
|
|
|
128
|
-
|
|
197
|
+
#### 🛑 Breaking changes
|
|
129
198
|
|
|
130
|
-
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
199
|
+
- support relative parent refs, update tests/readme ([a379d12](https://github.com/thi-ng/umbrella/commit/a379d12))
|
|
200
|
+
- BREAKING CHANGE: lookup paths passed to the provided `resolve()` fn
|
|
201
|
+
inside function values are now relative by default (previously only
|
|
202
|
+
absolute paths were allowed)
|
|
203
|
+
- remove `resolveArray()` from module exports
|
|
204
|
+
(use `resolveMap()` instead)
|
|
205
|
+
- add absPath() to compute absolute path
|
|
206
|
+
- add support for "../" ancestor access
|
|
134
207
|
|
|
135
|
-
|
|
208
|
+
## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@0.2.0) (2018-04-16)
|
|
136
209
|
|
|
137
|
-
|
|
210
|
+
#### 🚀 Features
|
|
138
211
|
|
|
139
|
-
-
|
|
212
|
+
- resolve each ref only once, re-use resolved results ([6992e82](https://github.com/thi-ng/umbrella/commit/6992e82))
|
|
213
|
+
- this also fixes function value resolution,
|
|
214
|
+
e.g. {a: () => ()=> 1, b: "->a" } only unwraps `a` once now
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,75 +1,80 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"name": "@thi.ng/resolve-map",
|
|
3
|
+
"version": "5.1.2",
|
|
4
|
+
"description": "DAG resolution of vanilla objects & arrays with internally linked values",
|
|
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://github.com/thi-ng/umbrella/tree/develop/packages/resolve-map#readme",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
12
18
|
},
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"author": "Karsten Schmidt <k+npm@thi.ng>",
|
|
25
|
+
"license": "Apache-2.0",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "yarn clean && tsc --declaration",
|
|
28
|
+
"clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
|
|
29
|
+
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
30
|
+
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
31
|
+
"doc:readme": "yarn doc:stats && tools:readme",
|
|
32
|
+
"doc:stats": "tools:module-stats",
|
|
33
|
+
"pub": "yarn npm publish --access public",
|
|
34
|
+
"test": "testament test"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@thi.ng/api": "^8.3.2",
|
|
38
|
+
"@thi.ng/checks": "^3.1.2",
|
|
39
|
+
"@thi.ng/errors": "^2.1.2",
|
|
40
|
+
"@thi.ng/paths": "^5.1.2"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@microsoft/api-extractor": "^7.18.19",
|
|
44
|
+
"@thi.ng/testament": "^0.2.2",
|
|
45
|
+
"rimraf": "^3.0.2",
|
|
46
|
+
"tools": "^0.0.1",
|
|
47
|
+
"typedoc": "^0.22.9",
|
|
48
|
+
"typescript": "^4.5.2"
|
|
49
|
+
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"configuration",
|
|
52
|
+
"dag",
|
|
53
|
+
"datastructure",
|
|
54
|
+
"graph",
|
|
55
|
+
"typescript"
|
|
56
|
+
],
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=12.7"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"*.js",
|
|
65
|
+
"*.d.ts"
|
|
66
|
+
],
|
|
67
|
+
"exports": {
|
|
68
|
+
".": {
|
|
69
|
+
"import": "./index.js"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"thi.ng": {
|
|
73
|
+
"related": [
|
|
74
|
+
"dgraph",
|
|
75
|
+
"rstream-graph"
|
|
23
76
|
],
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"clean": "rimraf *.js *.d.ts *.map doc",
|
|
29
|
-
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
30
|
-
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
|
|
31
|
-
"doc:readme": "yarn doc:stats && ../../scripts/node-esm ../../tools/src/readme.ts",
|
|
32
|
-
"doc:stats": "../../scripts/node-esm ../../tools/src/module-stats.ts",
|
|
33
|
-
"pub": "yarn build && yarn publish --access public",
|
|
34
|
-
"test": "testament test"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.1.0",
|
|
38
|
-
"@thi.ng/checks": "^3.0.6",
|
|
39
|
-
"@thi.ng/errors": "^2.0.6",
|
|
40
|
-
"@thi.ng/paths": "^5.0.7"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@thi.ng/testament": "^0.1.6"
|
|
44
|
-
},
|
|
45
|
-
"keywords": [
|
|
46
|
-
"configuration",
|
|
47
|
-
"dag",
|
|
48
|
-
"datastructure",
|
|
49
|
-
"graph",
|
|
50
|
-
"typescript"
|
|
51
|
-
],
|
|
52
|
-
"publishConfig": {
|
|
53
|
-
"access": "public"
|
|
54
|
-
},
|
|
55
|
-
"engines": {
|
|
56
|
-
"node": ">=12.7"
|
|
57
|
-
},
|
|
58
|
-
"files": [
|
|
59
|
-
"*.js",
|
|
60
|
-
"*.d.ts"
|
|
61
|
-
],
|
|
62
|
-
"exports": {
|
|
63
|
-
".": {
|
|
64
|
-
"import": "./index.js"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"thi.ng": {
|
|
68
|
-
"related": [
|
|
69
|
-
"dgraph",
|
|
70
|
-
"rstream-graph"
|
|
71
|
-
],
|
|
72
|
-
"year": 2018
|
|
73
|
-
},
|
|
74
|
-
"gitHead": "852cd2450617c86d15d18477dc634f17f04202eb"
|
|
75
|
-
}
|
|
77
|
+
"year": 2018
|
|
78
|
+
},
|
|
79
|
+
"gitHead": "e8a7c2a40191b391cef182c2978e5a6c85987a87\n"
|
|
80
|
+
}
|