@rimbu/collection-types
Advanced tools
Comparing version 0.10.6 to 1.0.0-alpha.1
{ | ||
"name": "map-custom", | ||
"private": true, | ||
"source": "../src/map-custom/index.ts", | ||
"main": "../dist/main/map-custom/index.js", | ||
"module": "../dist/module/map-custom/index.js", | ||
"types": "../dist/types/map-custom/index.d.ts" | ||
"main": "../dist/cjs/map-custom/index.js", | ||
"module": "../dist/esm/map-custom/index.mjs", | ||
"types": "../dist/types/map-custom/index.d.mts" | ||
} |
{ | ||
"name": "map", | ||
"private": true, | ||
"source": "../src/map/index.ts", | ||
"main": "../dist/main/map/index.js", | ||
"module": "../dist/module/map/index.js", | ||
"types": "../dist/types/map/index.d.ts" | ||
"main": "../dist/cjs/map/index.js", | ||
"module": "../dist/esm/map/index.mjs", | ||
"types": "../dist/types/map/index.d.mts" | ||
} |
116
package.json
{ | ||
"name": "@rimbu/collection-types", | ||
"version": "0.10.6", | ||
"version": "1.0.0-alpha.1", | ||
"description": "Type definitions for the basic generic Rimbu collections", | ||
@@ -30,41 +30,41 @@ "keywords": [ | ||
}, | ||
"source": "./src/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" | ||
}, | ||
"./map": { | ||
"types": "./dist/types/map/index.d.ts", | ||
"bun": "./src/map/index.ts", | ||
"import": "./dist/module/map/index.js", | ||
"require": "./dist/main/map/index.js", | ||
"default": "./dist/module/map/index.js" | ||
"types": "./dist/types/map/index.d.mts", | ||
"bun": "./dist/bun/map/index.mts", | ||
"import": "./dist/esm/map/index.mjs", | ||
"require": "./dist/cjs/map/index.js", | ||
"default": "./dist/esm/map/index.mjs" | ||
}, | ||
"./map-custom": { | ||
"types": "./dist/types/map-custom/index.d.ts", | ||
"bun": "./src/map-custom/index.ts", | ||
"import": "./dist/module/map-custom/index.js", | ||
"require": "./dist/main/map-custom/index.js", | ||
"default": "./dist/module/map-custom/index.js" | ||
"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.js", | ||
"default": "./dist/esm/map-custom/index.mjs" | ||
}, | ||
"./set": { | ||
"types": "./dist/types/set/index.d.ts", | ||
"bun": "./src/set/index.ts", | ||
"import": "./dist/module/set/index.js", | ||
"require": "./dist/main/set/index.js", | ||
"default": "./dist/module/set/index.js" | ||
"types": "./dist/types/set/index.d.mts", | ||
"bun": "./dist/bun/set/index.mts", | ||
"import": "./dist/esm/set/index.mjs", | ||
"require": "./dist/cjs/set/index.js", | ||
"default": "./dist/esm/set/index.mjs" | ||
}, | ||
"./set-custom": { | ||
"types": "./dist/types/set-custom/index.d.ts", | ||
"bun": "./src/set-custom/index.ts", | ||
"import": "./dist/module/set-custom/index.js", | ||
"require": "./dist/main/set-custom/index.js", | ||
"default": "./dist/module/set-custom/index.js" | ||
"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.js", | ||
"default": "./dist/esm/set-custom/index.mjs" | ||
}, | ||
@@ -75,2 +75,20 @@ "./test-utils/*": { | ||
}, | ||
"imports": { | ||
"#collection-types/*.mts": { | ||
"bun": "./dist/bun/*.mts" | ||
}, | ||
"#collection-types/*.mjs": { | ||
"types": "./dist/types/*.d.mts", | ||
"import": "./dist/esm/*.mjs", | ||
"require": "./dist/cjs/*.js", | ||
"default": "./dist/esm/*.mjs" | ||
}, | ||
"#collection-types/*": { | ||
"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": [ | ||
@@ -86,27 +104,31 @@ "dist", | ||
"build": "yarn clean && yarn bundle", | ||
"build:deno": "rimraf deno_dist ../../deno_dist/collection-types && denoify && mv deno_dist ../../deno_dist/collection-types", | ||
"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/collection-types && mv deno_dist ../../deno_dist/collection-types", | ||
"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:map && yarn extract-api:map-custom && yarn extract-api:set && yarn extract-api:set-custom", | ||
"extract-api:main": "api-extractor run --local --verbose --config config/api-extractor.main.json", | ||
"extract-api:map": "api-extractor run --local --verbose --config config/api-extractor.map.json", | ||
"extract-api:map-custom": "api-extractor run --local --verbose --config config/api-extractor.map-custom.json", | ||
"extract-api:set": "api-extractor run --local --verbose --config config/api-extractor.set.json", | ||
"extract-api:set-custom": "api-extractor run --local --verbose --config config/api-extractor.set-custom.json", | ||
"extract-api:main": "ts-node ../../config/api-extractor.ts config/api-extractor.main.json", | ||
"extract-api:map": "ts-node ../../config/api-extractor.ts config/api-extractor.map.json", | ||
"extract-api:map-custom": "ts-node ../../config/api-extractor.ts config/api-extractor.map-custom.json", | ||
"extract-api:set": "ts-node ../../config/api-extractor.ts config/api-extractor.set.json", | ||
"extract-api:set-custom": "ts-node ../../config/api-extractor.ts config/api-extractor.set-custom.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:types": "tsd", | ||
"test:types": "tsd --files test-d", | ||
"typecheck": "tsc" | ||
}, | ||
"sideEffects": false, | ||
"dependencies": { | ||
"@rimbu/base": "^0.11.4", | ||
"@rimbu/common": "*", | ||
"@rimbu/stream": "^0.13.6", | ||
"tslib": "^2.5.0" | ||
"@rimbu/base": "^1.0.0-alpha.1", | ||
"@rimbu/common": "^1.0.0-alpha.1", | ||
"@rimbu/stream": "^1.0.0-alpha.1", | ||
"tslib": "^2.5.3" | ||
}, | ||
@@ -116,3 +138,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "5400f8471bdfc7a227f7defc4a3942bdf3ff1423" | ||
"gitHead": "dfaf8143e56f54ed1e31f7c96802548c46e03bd8" | ||
} |
{ | ||
"name": "set-custom", | ||
"private": true, | ||
"source": "../src/set-custom/index.ts", | ||
"main": "../dist/main/set-custom/index.js", | ||
"module": "../dist/module/set-custom/index.js", | ||
"types": "../dist/types/set-custom/index.d.ts" | ||
"main": "../dist/cjs/set-custom/index.js", | ||
"module": "../dist/esm/set-custom/index.mjs", | ||
"types": "../dist/types/set-custom/index.d.mts" | ||
} |
{ | ||
"name": "set", | ||
"private": true, | ||
"source": "../src/set/index.ts", | ||
"main": "../dist/main/set/index.js", | ||
"module": "../dist/module/set/index.js", | ||
"types": "../dist/types/set/index.d.ts" | ||
"main": "../dist/cjs/set/index.js", | ||
"module": "../dist/esm/set/index.mjs", | ||
"types": "../dist/types/set/index.d.mts" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
274771
0
Yes
1192
1
+ Added@rimbu/base@1.1.0(transitive)
+ Added@rimbu/common@1.1.0(transitive)
+ Added@rimbu/stream@1.1.1(transitive)
- Removed@rimbu/base@0.11.4(transitive)
- Removed@rimbu/common@2.0.1(transitive)
- Removed@rimbu/stream@0.13.6(transitive)
Updated@rimbu/base@^1.0.0-alpha.1
Updated@rimbu/common@^1.0.0-alpha.1
Updated@rimbu/stream@^1.0.0-alpha.1
Updatedtslib@^2.5.3