@thi.ng/adjacency 2.1.6 → 2.1.9

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-03-11T12:13:49Z
3
+ - **Last updated**: 2022-05-07T11:33:35Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/adjacency",
3
- "version": "2.1.6",
3
+ "version": "2.1.9",
4
4
  "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,21 +34,21 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.4",
38
- "@thi.ng/arrays": "^2.2.0",
39
- "@thi.ng/bitfield": "^2.1.5",
40
- "@thi.ng/dcons": "^3.2.0",
41
- "@thi.ng/errors": "^2.1.4",
42
- "@thi.ng/sparse": "^0.3.5"
37
+ "@thi.ng/api": "^8.3.6",
38
+ "@thi.ng/arrays": "^2.2.3",
39
+ "@thi.ng/bitfield": "^2.1.7",
40
+ "@thi.ng/dcons": "^3.2.3",
41
+ "@thi.ng/errors": "^2.1.6",
42
+ "@thi.ng/sparse": "^0.3.8"
43
43
  },
44
44
  "devDependencies": {
45
- "@microsoft/api-extractor": "^7.19.4",
46
- "@thi.ng/testament": "^0.2.4",
47
- "@thi.ng/vectors": "^7.5.0",
45
+ "@microsoft/api-extractor": "^7.23.1",
46
+ "@thi.ng/testament": "^0.2.7",
47
+ "@thi.ng/vectors": "^7.5.4",
48
48
  "rimraf": "^3.0.2",
49
49
  "tools": "^0.0.1",
50
- "typedoc": "^0.22.13",
51
- "typescript": "^4.6.2"
50
+ "typedoc": "^0.22.15",
51
+ "typescript": "^4.6.4"
52
52
  },
53
53
  "keywords": [
54
54
  "adjacency",
@@ -86,31 +86,31 @@
86
86
  ],
87
87
  "exports": {
88
88
  ".": {
89
- "import": "./index.js"
89
+ "default": "./index.js"
90
90
  },
91
91
  "./api": {
92
- "import": "./api.js"
92
+ "default": "./api.js"
93
93
  },
94
94
  "./bfs": {
95
- "import": "./bfs.js"
95
+ "default": "./bfs.js"
96
96
  },
97
97
  "./binary": {
98
- "import": "./binary.js"
98
+ "default": "./binary.js"
99
99
  },
100
100
  "./dfs": {
101
- "import": "./dfs.js"
101
+ "default": "./dfs.js"
102
102
  },
103
103
  "./disjoint-set": {
104
- "import": "./disjoint-set.js"
104
+ "default": "./disjoint-set.js"
105
105
  },
106
106
  "./list": {
107
- "import": "./list.js"
107
+ "default": "./list.js"
108
108
  },
109
109
  "./mst": {
110
- "import": "./mst.js"
110
+ "default": "./mst.js"
111
111
  },
112
112
  "./sparse": {
113
- "import": "./sparse.js"
113
+ "default": "./sparse.js"
114
114
  }
115
115
  },
116
116
  "thi.ng": {
@@ -119,5 +119,5 @@
119
119
  ],
120
120
  "year": 2018
121
121
  },
122
- "gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n"
122
+ "gitHead": "e23901b8582af71d8a29e0ce4929f15ac509f9e5\n"
123
123
  }