New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rimbu/bimap

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/bimap - npm Package Compare versions

Comparing version

to
1.0.0-alpha.1

./dist/cjs/main/index.js

7

custom/package.json
{
"name": "custom",
"private": true,
"source": "../src/custom/index.ts",
"main": "../dist/main/custom/index.js",
"module": "../dist/module/custom/index.js",
"types": "../dist/types/custom/index.d.ts"
"main": "../dist/cjs/custom/index.js",
"module": "../dist/esm/custom/index.mjs",
"types": "../dist/types/custom/index.d.mts"
}
{
"name": "@rimbu/bimap",
"version": "0.11.7",
"version": "1.0.0-alpha.1",
"description": "A bidirectional immutable Map of keys and values for TypeScript",

@@ -32,22 +32,40 @@ "keywords": [

},
"source": "./src/main/index.ts",
"main": "./dist/main/main/index.js",
"module": "./dist/module/main/index.js",
"types": "./dist/types/main/index.d.ts",
"type": "module",
"main": "./dist/cjs/main/index.js",
"module": "./dist/esm/main/index.mjs",
"types": "./dist/types/main/index.d.mts",
"exports": {
".": {
"types": "./dist/types/main/index.d.ts",
"bun": "./src/main/index.ts",
"import": "./dist/module/main/index.js",
"require": "./dist/main/main/index.js",
"default": "./dist/module/main/index.js"
"types": "./dist/types/main/index.d.mts",
"bun": "./dist/bun/main/index.mts",
"import": "./dist/esm/main/index.mjs",
"require": "./dist/cjs/main/index.js",
"default": "./dist/esm/main/index.mjs"
},
"./custom": {
"types": "./dist/types/custom/index.d.ts",
"bun": "./src/custom/index.ts",
"import": "./dist/module/custom/index.js",
"require": "./dist/main/custom/index.js",
"default": "./dist/module/custom/index.js"
"types": "./dist/types/custom/index.d.mts",
"bun": "./dist/bun/custom/index.mts",
"import": "./dist/esm/custom/index.mjs",
"require": "./dist/cjs/custom/index.js",
"default": "./dist/esm/custom/index.mjs"
}
},
"imports": {
"#bimap/*.mts": {
"bun": "./dist/bun/*.mts"
},
"#bimap/*.mjs": {
"types": "./dist/types/*.d.mts",
"import": "./dist/esm/*.mjs",
"require": "./dist/cjs/*.js",
"default": "./dist/esm/*.mjs"
},
"#bimap/*": {
"types": "./dist/types/*/index.d.mts",
"bun": "./dist/bun/*/index.mts",
"import": "./dist/esm/*/index.mjs",
"require": "./dist/cjs/*/index.js",
"default": "./dist/esm/*/index.mjs"
}
},
"files": [

@@ -60,27 +78,33 @@ "dist",

"build": "yarn clean && yarn bundle",
"build:deno": "rimraf deno_dist ../../deno_dist/bimap && denoify && mv deno_dist ../../deno_dist/bimap",
"bundle": "yarn bundle:main && yarn bundle:module && yarn bundle:types",
"bundle:main": "tsc --p tsconfig.main.json",
"bundle:module": "tsc --p tsconfig.module.json",
"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' --legacy-output",
"bundle:deno-prepare": "node ../../config/prepare-denoify.mjs",
"bundle:deno-convert": "denoify --src _deno_prepare/src",
"bundle:deno-move": "rimraf ../../deno_dist/bimap && mv deno_dist ../../deno_dist/bimap",
"bundle:deno-clean": "rimraf _deno_prepare",
"bundle:esm": "tsc --p tsconfig.esm.json",
"bundle:types": "tsc --p tsconfig.types.json",
"clean": "rimraf dist",
"extract-api": "yarn extract-api:main && yarn extract-api:custom",
"extract-api:custom": "api-extractor run --local --verbose --config config/api-extractor.custom.json",
"extract-api:main": "api-extractor run --local --verbose --config config/api-extractor.main.json",
"extract-api:custom": "ts-node ../../config/api-extractor.ts config/api-extractor.custom.json",
"extract-api:main": "ts-node ../../config/api-extractor.ts config/api-extractor.main.json",
"format": "yarn format:base --write",
"format:base": "prettier \"{!CHANGELOG.md}|**/**/*.{ts,tsx,js,json,md}\"",
"format:base": "prettier \"{!CHANGELOG.md}|**/**/*.{ts,tsx,js,mts,mjs,json,md}\"",
"format:check": "yarn format:base --check",
"lint": "eslint src",
"test": "jest",
"test:types": "tsd",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest",
"test:types": "tsd --files test-d",
"typecheck": "tsc"
},
"sideEffects": false,
"dependencies": {
"@rimbu/base": "^0.11.4",
"@rimbu/collection-types": "^0.10.6",
"@rimbu/common": "*",
"@rimbu/hashed": "^0.9.7",
"@rimbu/stream": "^0.13.6",
"tslib": "^2.5.0"
"@rimbu/base": "^1.0.0-alpha.1",
"@rimbu/collection-types": "^1.0.0-alpha.1",
"@rimbu/common": "^1.0.0-alpha.1",
"@rimbu/hashed": "^1.0.0-alpha.1",
"@rimbu/stream": "^1.0.0-alpha.1",
"tslib": "^2.5.3"
},

@@ -90,3 +114,3 @@ "publishConfig": {

},
"gitHead": "52f177b0dbaf4cea4a0cd70e9d4e91ae1fee8891"
"gitHead": "dfaf8143e56f54ed1e31f7c96802548c46e03bd8"
}