avl-tree-typed 1.33.8 → 1.34.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "avl-tree-typed",
3
- "version": "1.33.8",
3
+ "version": "1.34.2",
4
4
  "description": "AVLTree(Adelson-Velsky and Landis Tree). Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -143,7 +143,7 @@
143
143
  "bugs": {
144
144
  "url": "https://github.com/zrwusa/data-structure-typed/issues"
145
145
  },
146
- "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
146
+ "homepage": "https://data-structure-typed-docs.vercel.app",
147
147
  "types": "dist/index.d.ts",
148
148
  "devDependencies": {
149
149
  "@types/jest": "^29.5.3",
@@ -162,6 +162,6 @@
162
162
  "typescript": "^4.9.5"
163
163
  },
164
164
  "dependencies": {
165
- "data-structure-typed": "^1.33.8"
165
+ "data-structure-typed": "^1.34.2"
166
166
  }
167
167
  }
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 { AVLTreeNode, AVLTree } from 'data-structure-typed';
package/tmp.json DELETED
File without changes