Initial Commit - Sonnet 4.5
This commit is contained in:
32
package.json
Normal file
32
package.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user