UNPKG

@euriklis/ds-architect

Version:

`@euriklis/ds-architect` is a modular and extensible library that provides a rich ecosystem for graph and network-based data structures. Designed with both academic rigor and practical application in mind, this library offers powerful graph algorithms and

58 lines (57 loc) 1.21 kB
{ "name": "@euriklis/ds-architect", "version": "0.3.0", "module": "./dist/index.js", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "files": [ "dist", "Types", "README.md", "LICENSE" ], "license": "MIT", "devDependencies": { "@types/bun": "latest" }, "scripts": { "build": "rm -rf dist && bun build index.ts --outdir dist --target node --minify", "types": "tsc -p tsconfig.build.json && find dist -name '*.back.d.ts' -delete", "prepare": "npm run build && npm run types" }, "repository": { "type": "git", "url": "https://github.com/VelislavKarastoychev/euriklis-ds-architect.git" }, "keywords": [ "data structures", "queue", "doubly linked list", "heap", "BST", "AVL tree", "stack", "graph algorithms", "network algorithms", "typescript", "graphs", "library" ], "publishConfig": { "access": "public" }, "peerDependencies": { "typescript": "^5.8.2" }, "dependencies": { "@euriklis/validator-ts": "^1.0.0", "uuid": "^11.1.0" } }