{ "name": "data-structure-typed", "version": "0.9.16", "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": { "build": "rm -rf dist && npx tsc", "test": "jest", "build:docs": "typedoc --out docs ./src" }, "repository": { "type": "git", "url": "git+https://github.com/zrwusa/data-structure-typed.git" }, "keywords": [ "Binary Tree", "AVL Tree", "Binary Search Tree (BST)", "Tree Multiset", "Segment Tree", "Binary Indexed Tree", "Graph", "Directed Graph", "Undirected Graph", "Singly Linked List", "Hash", "CoordinateSet", "CoordinateMap", "Heap", "Doubly Linked List", "Priority Queue", "Max Priority Queue", "Min Priority Queue", "Queue", "ObjectDeque", "ArrayDeque", "Stack", "Trie" ], "author": "Tyler Zeng", "license": "ISC", "bugs": { "url": "https://github.com/zrwusa/data-structure-typed/issues" }, "homepage": "https://github.com/zrwusa/data-structure-typed#readme", "types": "dist/index.d.ts", "devDependencies": { "@types/jest": "^29.5.3", "@types/lodash": "^4.14.197", "@types/node": "^20.4.9", "jest": "^29.6.2", "ts-jest": "^29.1.1", "typedoc": "^0.24.8", "typescript": "^4.6.2" }, "dependencies": { "lodash": "^4.17.21" } }