{
	"name": "json-web-streams",
	"version": "1.1.0",
	"description": "Streaming JSON parser built on top of the Web Streams API, so it works in web browsers, Node.js, and many other environments",
	"keywords": [
		"web streams",
		"TransformStream",
		"JSON"
	],
	"homepage": "https://github.com/zengm-games/json-web-streams",
	"repository": {
		"type": "git",
		"url": "git://github.com/zengm-games/json-web-streams.git"
	},
	"license": "Apache-2.0",
	"author": "Jeremy Scheff <jeremy@zengm.com> (https://zengm.com/)",
	"type": "module",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"files": [
		"dist"
	],
	"scripts": {
		"bench": "vitest bench",
		"build": "tsdown --unbundle",
		"format": "prettier --write .",
		"lint": "npm-run-all --parallel lint:oxlint lint:tsc",
		"lint:oxlint": "oxlint --type-aware",
		"lint:tsc": "tsc",
		"prepack": "node --run build",
		"prepare": "husky",
		"test": "vitest"
	},
	"lint-staged": {
		"*.{js,cjs,mjs,jsx,json,scss,ts,cts,mts,tsx,md}": "prettier --write"
	},
	"dependencies": {
		"@standard-schema/spec": "^1.0.0",
		"jsonpath-rfc9535": "^1.3.0"
	},
	"devDependencies": {
		"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
		"@types/node": "^24.9.1",
		"husky": "^9.1.7",
		"lint-staged": "^16.2.5",
		"npm-run-all2": "^8.0.4",
		"oxlint": "^1.23.0",
		"oxlint-tsgolint": "^0.2.0",
		"prettier": "^3.6.2",
		"prettier-plugin-packagejson": "^2.5.19",
		"tsdown": "^0.15.9",
		"typescript": "^5.9.3",
		"vitest": "^3.2.4",
		"zod": "^4.1.12"
	},
	"engines": {
		"node": ">=22",
		"pnpm": "^10.0.0"
	}
}
