Socket
Socket
Sign inDemoInstall

@rimbu/stream

Package Overview
Dependencies
3
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.13.6 to 1.0.0-alpha.1

./dist/cjs/main/index.js

7

async-custom/package.json
{
"name": "async-custom",
"private": true,
"source": "../src/async-custom/index.ts",
"main": "../dist/main/async-custom/index.js",
"module": "../dist/module/async-custom/index.js",
"types": "../dist/types/async-custom/index.d.ts"
"main": "../dist/cjs/async-custom/index.js",
"module": "../dist/esm/async-custom/index.mjs",
"types": "../dist/types/async-custom/index.d.mts"
}
{
"name": "async",
"private": true,
"source": "../src/async/index.ts",
"main": "../dist/main/async/index.js",
"module": "../dist/module/async/index.js",
"types": "../dist/types/async/index.d.ts"
"main": "../dist/cjs/async/index.js",
"module": "../dist/esm/async/index.mjs",
"types": "../dist/types/async/index.d.mts"
}
{
"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/stream",
"version": "0.13.6",
"version": "1.0.0-alpha.1",
"description": "Efficient structure representing a sequence of elements, with powerful operations for TypeScript",

@@ -35,36 +35,54 @@ "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"
},
"./async": {
"types": "./dist/types/async/index.d.ts",
"bun": "./src/async/index.ts",
"import": "./dist/module/async/index.js",
"require": "./dist/main/async/index.js",
"default": "./dist/module/async/index.js"
"types": "./dist/types/async/index.d.mts",
"bun": "./dist/bun/async/index.mts",
"import": "./dist/esm/async/index.mjs",
"require": "./dist/cjs/async/index.js",
"default": "./dist/esm/async/index.mjs"
},
"./async-custom": {
"types": "./dist/types/async-custom/index.d.ts",
"bun": "./src/async-custom/index.ts",
"import": "./dist/module/async-custom/index.js",
"require": "./dist/main/async-custom/index.js",
"default": "./dist/module/async-custom/index.js"
"types": "./dist/types/async-custom/index.d.mts",
"bun": "./dist/bun/async-custom/index.mts",
"import": "./dist/esm/async-custom/index.mjs",
"require": "./dist/cjs/async-custom/index.js",
"default": "./dist/esm/async-custom/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": {
"#stream/*.mts": {
"bun": "./dist/bun/*.mts"
},
"#stream/*.mjs": {
"types": "./dist/types/*.d.mts",
"import": "./dist/esm/*.mjs",
"require": "./dist/cjs/*.js",
"default": "./dist/esm/*.mjs"
},
"#stream/*": {
"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": [

@@ -79,6 +97,11 @@ "dist",

"build": "yarn clean && yarn bundle",
"build:deno": "rimraf deno_dist ../../deno_dist/stream && denoify && mv deno_dist ../../deno_dist/stream",
"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/stream && mv deno_dist ../../deno_dist/stream",
"bundle:deno-clean": "rimraf _deno_prepare",
"bundle:esm": "tsc --p tsconfig.esm.json",
"bundle:types": "tsc --p tsconfig.types.json",

@@ -88,19 +111,20 @@ "clean": "rimraf dist",

"extract-api": "yarn extract-api:main && yarn extract-api:custom && yarn extract-api:async && yarn extract-api:async-custom",
"extract-api:main": "api-extractor run --local --verbose --config config/api-extractor.main.json",
"extract-api:custom": "api-extractor run --local --verbose --config config/api-extractor.custom.json",
"extract-api:async": "api-extractor run --local --verbose --config config/api-extractor.async.json",
"extract-api:async-custom": "api-extractor run --local --verbose --config config/api-extractor.async-custom.json",
"extract-api:main": "ts-node ../../config/api-extractor.ts config/api-extractor.main.json",
"extract-api:custom": "ts-node ../../config/api-extractor.ts config/api-extractor.custom.json",
"extract-api:async": "ts-node ../../config/api-extractor.ts config/api-extractor.async.json",
"extract-api:async-custom": "ts-node ../../config/api-extractor.ts config/api-extractor.async-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": "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/common": "*",
"tslib": "^2.5.0"
"@rimbu/base": "^1.0.0-alpha.1",
"@rimbu/common": "^1.0.0-alpha.1",
"tslib": "^2.5.3"
},

@@ -117,3 +141,3 @@ "publishConfig": {

},
"gitHead": "5400f8471bdfc7a227f7defc4a3942bdf3ff1423"
"gitHead": "dfaf8143e56f54ed1e31f7c96802548c46e03bd8"
}
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc