undirected-graph-typed 1.36.4 → 1.36.6

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/README.md +8 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,11 @@
1
+ ![NPM](https://img.shields.io/npm/l/undirected-graph-typed)
2
+ ![GitHub top language](https://img.shields.io/github/languages/top/zrwusa/data-structure-typed)
3
+ ![npm](https://img.shields.io/npm/dw/undirected-graph-typed)
4
+ ![eslint](https://aleen42.github.io/badges/src/eslint.svg)
5
+ ![npm package minimized gzipped size (select exports)](https://img.shields.io/bundlejs/size/undirected-graph-typed)
6
+ ![npm bundle size](https://img.shields.io/bundlephobia/min/undirected-graph-typed)
7
+ ![npm](https://img.shields.io/npm/v/undirected-graph-typed)
8
+
1
9
  # What
2
10
  ## Brief
3
11
  This is a standalone Undirected Graph data structure from the data-structure-typed collection. If you wish to access more data structures or advanced features, you can transition to directly installing the complete [data-structure-typed](https://www.npmjs.com/package/data-structure-typed) package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undirected-graph-typed",
3
- "version": "1.36.4",
3
+ "version": "1.36.6",
4
4
  "description": "Undirected Graph. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -144,6 +144,6 @@
144
144
  "typescript": "^4.9.5"
145
145
  },
146
146
  "dependencies": {
147
- "data-structure-typed": "^1.36.4"
147
+ "data-structure-typed": "^1.36.6"
148
148
  }
149
149
  }