data-structure-typed/package.json

77 lines
1.6 KiB
JSON
Raw Normal View History

2023-06-15 16:34:28 +00:00
{
"name": "data-structure-typed",
2023-06-16 02:58:17 +00:00
"version": "0.8.18",
2023-06-15 16:34:28 +00:00
"description": "Hash (CoordinateSet, CoordinateMap) Heap (MaxHeap, MinHeap) Binary Tree (AVL Tree, Binary Indexed Tree, Binary Search Tree, Segment Tree, Tree Multiset) Graph (Directed Graph, Undirected Graph) Linked List (Singly Linked List, Doubly Linked List) Matrix Priority Queue (Max Priority Queue, Min Priority Queue) Queue (Queue, Dequeue) Stack Trie",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrwusa/data-structure-typed.git"
},
"keywords": [
"Hash",
"CoordinateSet",
"CoordinateMap",
"Heap",
"MaxHeap",
"MinHeap",
"Binary",
"Tree",
"AVL",
"Tree",
"Binary",
"Indexed",
"Tree",
"Binary",
"Search",
"Tree",
"Segment",
"Tree",
"Tree",
"Multiset",
"Graph",
"Directed",
"Graph",
"Undirected",
"Graph",
"Linked",
"List",
"Singly",
"Linked",
"List",
"Doubly",
"Linked",
"List",
"Matrix",
"Priority",
"Queue",
"Max",
"Priority",
"Queue",
"Min",
"Priority",
"Queue",
"Queue",
"Queue",
"Dequeue",
"Stack",
"Trie"
],
"author": "Tyler Zeng",
"license": "ISC",
"bugs": {
2023-06-15 17:24:35 +00:00
"url": "https://github.com/zrwusa/data-structure-typed/issues"
2023-06-15 16:34:28 +00:00
},
2023-06-15 17:24:35 +00:00
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
"types": "dist/index.d.ts",
2023-06-15 16:34:28 +00:00
"devDependencies": {
"@types/lodash": "^4.14.178",
"typescript": "^4.6.2"
},
"dependencies": {
"lodash": "^4.17.21"
}
}