json-stream-es
Version:
A streaming JSON parser/stringifier using web streams.
56 lines • 1.45 kB
JSON
{
"name": "json-stream-es",
"description": "A streaming JSON parser/stringifier using web streams.",
"keywords": [
"json",
"jsonl",
"json-seq",
"streams",
"web-streams",
"whatwg-streams"
],
"version": "1.2.1",
"author": "Candid Dauth <cdauth@cdauth.eu>",
"repository": {
"type": "git",
"url": "https://github.com/cdauth/json-stream-es"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "8",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-node": "^1.5.3",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.3"
},
"scripts": {
"build": "vite build",
"clean": "rimraf dist out out.node",
"test": "vitest run",
"test-watch": "vitest",
"check-types": "tsc -b tsconfig.node.json --emitDeclarationOnly",
"lint": "eslint --ext .js,.mjs,.cjs,.ts,.mts,.cts ./"
},
"bugs": "https://github.com/cdauth/json-stream-es/issues",
"license": "BSD-2-Clause",
"main": "./dist/json-stream-es.mjs",
"types": "./dist/json-stream-es.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"packageManager": "yarn@4.2.2"
}