{
	"name": "@datastream/object",
	"version": "0.5.0",
	"description": "Object transform streams for picking, omitting, pivoting, batching, and key mapping",
	"type": "module",
	"engines": {
		"node": ">=24"
	},
	"engineStrict": true,
	"publishConfig": {
		"access": "public"
	},
	"main": "./index.node.mjs",
	"module": "./index.web.mjs",
	"exports": {
		".": {
			"node": {
				"import": {
					"types": "./index.d.ts",
					"default": "./index.node.mjs"
				}
			},
			"import": {
				"types": "./index.d.ts",
				"default": "./index.web.mjs"
			}
		},
		"./webstream": {
			"types": "./index.d.ts",
			"default": "./index.web.mjs"
		}
	},
	"types": "index.d.ts",
	"files": [
		"*.mjs",
		"*.map",
		"*.d.ts"
	],
	"scripts": {
		"test": "npm run test:unit",
		"test:unit": "node --test",
		"test:benchmark": "node __benchmarks__/index.js"
	},
	"license": "MIT",
	"keywords": [
		"Web Stream API",
		"Node Stream API"
	],
	"author": {
		"name": "datastream contributors",
		"url": "https://github.com/willfarrell/datastream/graphs/contributors"
	},
	"repository": {
		"type": "git",
		"url": "github:willfarrell/datastream",
		"directory": "packages/object"
	},
	"bugs": {
		"url": "https://github.com/willfarrell/datastream/issues"
	},
	"homepage": "https://datastream.js.org",
	"dependencies": {
		"@datastream/core": "0.5.0"
	}
}
