Socket
Socket
Sign inDemoInstall

@rimbu/hashed

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rimbu/hashed - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

dist/cjs/common/hashed-custom.cjs.map

2

common/package.json

@@ -6,3 +6,3 @@ {

"module": "../dist/esm/common/index.mjs",
"types": "../dist/types/common/index.d.mts"
"types": "../dist/cjs/common/index.d.cts"
}

@@ -6,3 +6,3 @@ {

"module": "../dist/esm/map-custom/index.mjs",
"types": "../dist/types/map-custom/index.d.mts"
"types": "../dist/cjs/map-custom/index.d.cts"
}

@@ -6,3 +6,3 @@ {

"module": "../dist/esm/map/index.mjs",
"types": "../dist/types/map/index.d.mts"
"types": "../dist/cjs/map/index.d.cts"
}
{
"name": "@rimbu/hashed",
"version": "2.1.0",
"version": "2.1.1",
"description": "Immutable HashMap and HashSet implementations for TypeScript",

@@ -37,45 +37,69 @@ "keywords": [

"module": "./dist/esm/main/index.mjs",
"types": "./dist/types/main/index.d.mts",
"types": "./dist/cjs/main/index.d.cts",
"exports": {
".": {
"types": "./dist/types/main/index.d.mts",
"bun": "./dist/bun/main/index.mts",
"import": "./dist/esm/main/index.mjs",
"require": "./dist/cjs/main/index.cjs",
"default": "./dist/esm/main/index.mjs"
"import": {
"types": "./dist/esm/main/index.d.mts",
"default": "./dist/esm/main/index.mjs"
},
"require": {
"types": "./dist/cjs/main/index.d.cts",
"default": "./dist/cjs/main/index.cjs"
},
"bun": "./dist/bun/main/index.mts"
},
"./common": {
"types": "./dist/types/common/index.d.mts",
"bun": "./dist/bun/common/index.mts",
"import": "./dist/esm/common/index.mjs",
"require": "./dist/cjs/common/index.cjs",
"default": "./dist/esm/common/index.mjs"
"import": {
"types": "./dist/esm/common/index.d.mts",
"default": "./dist/esm/common/index.mjs"
},
"require": {
"types": "./dist/cjs/common/index.d.cts",
"default": "./dist/cjs/common/index.cjs"
},
"bun": "./dist/bun/common/index.mts"
},
"./map": {
"types": "./dist/types/map/index.d.mts",
"bun": "./dist/bun/map/index.mts",
"import": "./dist/esm/map/index.mjs",
"require": "./dist/cjs/map/index.cjs",
"default": "./dist/esm/map/index.mjs"
"import": {
"types": "./dist/esm/map/index.d.mts",
"default": "./dist/esm/map/index.mjs"
},
"require": {
"types": "./dist/cjs/map/index.d.cts",
"default": "./dist/cjs/map/index.cjs"
},
"bun": "./dist/bun/map/index.mts"
},
"./map-custom": {
"types": "./dist/types/map-custom/index.d.mts",
"bun": "./dist/bun/map-custom/index.mts",
"import": "./dist/esm/map-custom/index.mjs",
"require": "./dist/cjs/map-custom/index.cjs",
"default": "./dist/esm/map-custom/index.mjs"
"import": {
"types": "./dist/esm/map-custom/index.d.mts",
"default": "./dist/esm/map-custom/index.mjs"
},
"require": {
"types": "./dist/cjs/map-custom/index.d.cts",
"default": "./dist/cjs/map-custom/index.cjs"
},
"bun": "./dist/bun/map-custom/index.mts"
},
"./set": {
"types": "./dist/types/set/index.d.mts",
"bun": "./dist/bun/set/index.mts",
"import": "./dist/esm/set/index.mjs",
"require": "./dist/cjs/set/index.cjs",
"default": "./dist/esm/set/index.mjs"
"import": {
"types": "./dist/esm/set/index.d.mts",
"default": "./dist/esm/set/index.mjs"
},
"require": {
"types": "./dist/cjs/set/index.d.cts",
"default": "./dist/cjs/set/index.cjs"
},
"bun": "./dist/bun/set/index.mts"
},
"./set-custom": {
"types": "./dist/types/set-custom/index.d.mts",
"bun": "./dist/bun/set-custom/index.mts",
"import": "./dist/esm/set-custom/index.mjs",
"require": "./dist/cjs/set-custom/index.cjs",
"default": "./dist/esm/set-custom/index.mjs"
"import": {
"types": "./dist/esm/set-custom/index.d.mts",
"default": "./dist/esm/set-custom/index.mjs"
},
"require": {
"types": "./dist/cjs/set-custom/index.d.cts",
"default": "./dist/cjs/set-custom/index.cjs"
},
"bun": "./dist/bun/set-custom/index.mts"
}

@@ -95,5 +119,8 @@ },

"build:deno": "yarn bundle:deno-prepare && yarn bundle:deno-convert && yarn bundle:deno-move && yarn bundle:deno-clean",
"bundle": "yarn bundle:cjs && yarn bundle:esm && yarn bundle:types && yarn bundle:bun",
"bundle:bun": "node ../../config/bunnify.mjs",
"bundle:cjs": "tsup src --format cjs --clean -d dist/cjs --loader '.mts=ts'",
"bundle": "yarn bundle:cjs && yarn bundle:esm && yarn bundle:bun",
"bundle:bun": "node ../../config/bunnify.mjs -mode bun",
"bundle:cjs": "yarn bundle:cjs-prepare && yarn bundle:cjs-build && yarn bundle:cjs-clean",
"bundle:cjs-prepare": "node ../../config/bunnify.mjs -mode cjs",
"bundle:cjs-build": "tsc -p tsconfig.cjs.json",
"bundle:cjs-clean": "rimraf _cjs_prepare",
"bundle:deno-prepare": "node ../../config/prepare-denoify.mjs",

@@ -104,3 +131,2 @@ "bundle:deno-convert": "denoify --src _deno_prepare/src",

"bundle:esm": "tsc --p tsconfig.esm.json",
"bundle:types": "tsc --p tsconfig.types.json",
"clean": "rimraf dist",

@@ -126,7 +152,7 @@ "circular": "npx -y madge --ts-config tsconfig.json --circular --extensions mts src/map-custom/index.mts",

"dependencies": {
"@rimbu/base": "^2.0.0",
"@rimbu/collection-types": "^2.1.0",
"@rimbu/common": "^2.0.0",
"@rimbu/list": "^2.1.0",
"@rimbu/stream": "^2.1.0",
"@rimbu/base": "^2.0.1",
"@rimbu/collection-types": "^2.1.1",
"@rimbu/common": "^2.0.1",
"@rimbu/list": "^2.1.1",
"@rimbu/stream": "^2.2.0",
"tslib": "^2.6.2"

@@ -144,3 +170,3 @@ },

},
"gitHead": "3b21319ce2d2ecf3d96bfbb09b688df09405acd0"
"gitHead": "b7ed656d2c55d1a715d6a3f52e364e68cb98c759"
}

@@ -6,3 +6,3 @@ {

"module": "../dist/esm/set-custom/index.mjs",
"types": "../dist/types/set-custom/index.d.mts"
"types": "../dist/cjs/set-custom/index.d.cts"
}

@@ -6,3 +6,3 @@ {

"module": "../dist/esm/set/index.mjs",
"types": "../dist/types/set/index.d.mts"
"types": "../dist/cjs/set/index.d.cts"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc