UNPKG

typescript-ds-lib

Version:

A collection of TypeScript data structure implementations

48 lines (47 loc) 1.03 kB
{ "name": "typescript-ds-lib", "version": "0.4.0", "description": "A collection of TypeScript data structure implementations", "author": "Artiom Baloian <artiom.baloian@gmail.com>", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rm -rf dist && tsc", "prepare": "npm run build", "test": "rm -rf dist && tsc && jest", "benchmark": "ts-node benchmarks/run.ts" }, "repository": { "type": "git", "url": "https://github.com/baloian/typescript-ds.git" }, "devDependencies": { "ts-node": "^10.9.2", "@types/jest": "^29.5.14", "@types/node": "^22.10.1", "ts-jest": "^29.2.5", "typescript": "^5.7.2" }, "keywords": [ "typescript", "data-structures", "algorithms", "binary-search-tree", "linked-list", "hash-table", "queue", "stack", "deque", "priority-queue", "red-black-tree", "set", "map", "matrix" ] }