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:
22
package.json
22
package.json
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user