UNPKG

@tzm96dev/algo-toolkit

Version:

Algorithms Kit: A TypeScript-first library of classic and modern algorithms. Includes sorting, searching, and string-matching utilities for arrays, numbers, and objects. Lightweight, fast, and production-ready.

70 lines (69 loc) 1.67 kB
{ "name": "@tzm96dev/algo-toolkit", "version": "1.0.0", "description": "Algorithms Kit: A TypeScript-first library of classic and modern algorithms. Includes sorting, searching, and string-matching utilities for arrays, numbers, and objects. Lightweight, fast, and production-ready.", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "sideEffects": false, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsup", "prepublishOnly": "npm run build" }, "keywords": [ "algorithms", "data-structures", "algorithm-library", "algorithm-toolkit", "typescript-algorithms", "javascript-algorithms", "sorting", "searching", "string-search", "bubble-sort", "quick-sort", "merge-sort", "heap-sort", "binary-search", "linear-search", "kmp", "rabin-karp", "utility", "toolkit", "library" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Talha-Zubair-Mayo/algo-toolkit.git" }, "bugs": { "url": "https://github.com/Talha-Zubair-Mayo/algo-toolkit/issues" }, "homepage": "https://github.com/Talha-Zubair-Mayo/algo-toolkit#readme", "publishConfig": { "access": "public" }, "author": { "name": "tzm96dev", "email": "tzm96dev@gmail.com", "url": "https://github.com/Talha-Zubair-Mayo" }, "devDependencies": { "tsup": "^8.1.0", "typescript": "^5.6.2" } }