Update ESLint configuration, package.json, and README; improve formatting and versioning consistency. Adjust TypeScript configuration to disallow importing extensions and refine test scripts for better readability.

This commit is contained in:
2025-11-23 01:15:28 -05:00
parent 3deadc6e75
commit f007573ade
15 changed files with 218 additions and 164 deletions

View File

@@ -1,17 +1,25 @@
{
"name": "@techniker-me/hash-map",
"version": "1.0.8",
"version": "1.0.9",
"description": "A robust HashMap implementation following OOP SOLID principles",
"type": "module",
"main": "browser/index.ts",
"module": "node/index.js",
"types": "types/index.d.ts",
"main": "./node/index.js",
"module": "./browser/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"node": "node/index.js",
"browser": "browser/index.js"
"types": "./types/index.d.ts",
"node": {
"import": "./node/index.js",
"default": "./node/index.js"
},
"browser": {
"import": "./browser/index.js",
"default": "./browser/index.js"
},
"default": "./node/index.js"
},
"./types": "types/index.d.ts"
"./types": "./types/index.d.ts"
},
"files": [
"node",