{
  "name": "@streamparser/json-node",
  "description": "Streaming JSON parser in Javascript for Node.js, Deno and the browser",
  "version": "0.0.22",
  "main": "./dist/mjs/index.js",
  "module": "./dist/mjs/index.js",
  "browser": "./dist/mjs/index.js",
  "types": "./dist/mjs/index.d.ts",
  "type": "module",
  "exports": {
    "./*": {
      "import": "./dist/mjs/*",
      "require": "./dist/cjs/*"
    },
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "author": "Juanjo Diaz <juanjo.diazmo@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/juanjoDiaz/streamparser-json.git"
  },
  "homepage": "https://github.com/juanjoDiaz/jsonparse2#readme",
  "bugs": "https://github.com/juanjoDiaz/streamparser-json/issues",
  "scripts": {
    "lint": "eslint src test --ext .js,.ts,.json",
    "lint:fix": "npm run lint -- --fix",
    "build:cjs": "tsc --module commonjs --verbatimModuleSyntax false --outDir ./dist/cjs && node ../../build-cjs.js whatwg",
    "build:mjs": "tsc --module esnext --verbatimModuleSyntax --outDir ./dist/mjs",
    "build:deno": "node ../../build.deno.js . ./dist/deno",
    "build": "npm run build:mjs && npm run build:cjs && npm run build:deno",
    "prepublishOnly": "npm run build",
    "pretest": "npm run build",
    "test": "node test/CommonJS.cjs && jest test",
    "test-with-coverage": "npm test -- --coverage"
  },
  "license": "MIT",
  "tags": [
    "json",
    "stream"
  ],
  "dependencies": {
    "@streamparser/json": "^0.0.22"
  },
  "devDependencies": {
    "@types/node": "^22.9.0"
  }
}
