directed-graph-typed 1.33.8 → 1.34.1

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/package.json +3 -3
  2. package/src/index.ts +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directed-graph-typed",
3
- "version": "1.33.8",
3
+ "version": "1.34.1",
4
4
  "description": "Directed Graph. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -127,7 +127,7 @@
127
127
  "bugs": {
128
128
  "url": "https://github.com/zrwusa/data-structure-typed/issues"
129
129
  },
130
- "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
130
+ "homepage": "https://data-structure-typed-docs.vercel.app",
131
131
  "types": "dist/index.d.ts",
132
132
  "devDependencies": {
133
133
  "@types/jest": "^29.5.3",
@@ -146,6 +146,6 @@
146
146
  "typescript": "^4.9.5"
147
147
  },
148
148
  "dependencies": {
149
- "data-structure-typed": "^1.33.8"
149
+ "data-structure-typed": "^1.34.1"
150
150
  }
151
151
  }
package/src/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * data-structure-typed
3
+ *
4
+ * @author Tyler Zeng
5
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
+ * @license MIT License
7
+ */
8
+ export { DirectedVertex, DirectedEdge, DirectedGraph } from 'data-structure-typed';