Files
hash-map/package.json

33 lines
737 B
JSON

{
"name": "@techniker-me/hash-map",
"version": "1.0.0",
"description": "A robust HashMap implementation following OOP SOLID principles",
"module": "src/index.ts",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"example:basic": "bun run src/examples/basic-usage.ts",
"example:custom": "bun run src/examples/custom-hash-function.ts"
},
"keywords": [
"hashmap",
"hash-map",
"map",
"data-structure",
"typescript",
"solid",
"oop"
],
"author": "Techniker.me",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}