bst-typed 1.19.0 → 1.19.3
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 +36 -9
package/package.json
CHANGED
|
@@ -1,32 +1,59 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bst-typed",
|
|
3
|
-
"version": "1.19.
|
|
4
|
-
"description": "Binary Search Tree
|
|
3
|
+
"version": "1.19.3",
|
|
4
|
+
"description": "BST (Binary Search Tree). Javascript & Typescript Data Structure.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rm -rf dist && npx tsc",
|
|
8
8
|
"test": "jest",
|
|
9
9
|
"build:docs": "typedoc --out docs ./src",
|
|
10
10
|
"deps:check": "dependency-cruiser src",
|
|
11
|
-
"build:publish": "npm run
|
|
11
|
+
"build:publish": "npm run build && npm run build:docs && npm publish"
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/zrwusa/
|
|
15
|
+
"url": "git+https://github.com/zrwusa/data-structure-typed"
|
|
16
16
|
},
|
|
17
17
|
"keywords": [
|
|
18
|
-
"Binary Tree",
|
|
19
18
|
"Binary Search Tree (BST)",
|
|
19
|
+
"Binary Tree",
|
|
20
20
|
"DFS",
|
|
21
21
|
"DFSIterative",
|
|
22
|
-
"BFS"
|
|
22
|
+
"BFS",
|
|
23
|
+
"Sorted",
|
|
24
|
+
"Ordered",
|
|
25
|
+
"Binary Tree",
|
|
26
|
+
"Node",
|
|
27
|
+
"Parent",
|
|
28
|
+
"Child",
|
|
29
|
+
"Root",
|
|
30
|
+
"Leaf",
|
|
31
|
+
"Depth",
|
|
32
|
+
"Height",
|
|
33
|
+
"Traversal",
|
|
34
|
+
"Pre-order",
|
|
35
|
+
"In-order",
|
|
36
|
+
"Post-order",
|
|
37
|
+
"Search",
|
|
38
|
+
"Insertion",
|
|
39
|
+
"Deletion",
|
|
40
|
+
"Balanced",
|
|
41
|
+
"Unbalanced",
|
|
42
|
+
"BST Property",
|
|
43
|
+
"Minimum",
|
|
44
|
+
"Maximum",
|
|
45
|
+
"Successor",
|
|
46
|
+
"Predecessor",
|
|
47
|
+
"Binary Tree Sorting",
|
|
48
|
+
"Binary Search",
|
|
49
|
+
"Search Efficiency"
|
|
23
50
|
],
|
|
24
51
|
"author": "Tyler Zeng zrwusa@gmail.com",
|
|
25
52
|
"license": "MIT",
|
|
26
53
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/zrwusa/
|
|
54
|
+
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
|
28
55
|
},
|
|
29
|
-
"homepage": "https://github.com/zrwusa/
|
|
56
|
+
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
|
|
30
57
|
"types": "dist/index.d.ts",
|
|
31
58
|
"devDependencies": {
|
|
32
59
|
"@types/jest": "^29.5.3",
|
|
@@ -38,7 +65,7 @@
|
|
|
38
65
|
"typescript": "^4.9.5"
|
|
39
66
|
},
|
|
40
67
|
"dependencies": {
|
|
41
|
-
"data-structure-typed": "^1.19.
|
|
68
|
+
"data-structure-typed": "^1.19.3",
|
|
42
69
|
"zod": "^3.22.2"
|
|
43
70
|
}
|
|
44
71
|
}
|