@thi.ng/adjacency 3.0.18 → 3.0.20
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 +1 -1
- package/README.md +2 -2
- package/package.json +17 -13
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 200 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -216,4 +216,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
216
216
|
|
|
217
217
|
## License
|
|
218
218
|
|
|
219
|
-
© 2018 -
|
|
219
|
+
© 2018 - 2025 Karsten Schmidt // Apache License 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/adjacency",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.20",
|
|
4
4
|
"description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
{
|
|
20
20
|
"type": "patreon",
|
|
21
21
|
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
22
26
|
}
|
|
23
27
|
],
|
|
24
28
|
"author": "Karsten Schmidt (https://thi.ng)",
|
|
@@ -39,19 +43,19 @@
|
|
|
39
43
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
44
|
},
|
|
41
45
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.11.
|
|
43
|
-
"@thi.ng/arrays": "^2.10.
|
|
44
|
-
"@thi.ng/bitfield": "^2.3.
|
|
45
|
-
"@thi.ng/dcons": "^3.2.
|
|
46
|
-
"@thi.ng/disjoint-set": "^1.1.
|
|
47
|
-
"@thi.ng/errors": "^2.5.
|
|
48
|
-
"@thi.ng/sparse": "^0.
|
|
46
|
+
"@thi.ng/api": "^8.11.16",
|
|
47
|
+
"@thi.ng/arrays": "^2.10.9",
|
|
48
|
+
"@thi.ng/bitfield": "^2.3.60",
|
|
49
|
+
"@thi.ng/dcons": "^3.2.136",
|
|
50
|
+
"@thi.ng/disjoint-set": "^1.1.9",
|
|
51
|
+
"@thi.ng/errors": "^2.5.22",
|
|
52
|
+
"@thi.ng/sparse": "^1.0.1"
|
|
49
53
|
},
|
|
50
54
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.48.
|
|
52
|
-
"@thi.ng/vectors": "^7.12.
|
|
53
|
-
"esbuild": "^0.24.
|
|
54
|
-
"typedoc": "^0.27.
|
|
55
|
+
"@microsoft/api-extractor": "^7.48.1",
|
|
56
|
+
"@thi.ng/vectors": "^7.12.13",
|
|
57
|
+
"esbuild": "^0.24.2",
|
|
58
|
+
"typedoc": "^0.27.6",
|
|
55
59
|
"typescript": "^5.7.2"
|
|
56
60
|
},
|
|
57
61
|
"keywords": [
|
|
@@ -123,5 +127,5 @@
|
|
|
123
127
|
],
|
|
124
128
|
"year": 2018
|
|
125
129
|
},
|
|
126
|
-
"gitHead": "
|
|
130
|
+
"gitHead": "56c1d57a96565bbcc8c06c73779a619bba0db368\n"
|
|
127
131
|
}
|