{
  "name": "@streamparser/json",
  "description": "Streaming JSON parser in Javascript for Node.js, Deno and the browser",
  "version": "0.0.26",
  "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": "biome check src test",
    "build:cjs": "tsc --module commonjs --moduleResolution bundler --verbatimModuleSyntax false --outDir ./dist/cjs && node ../../build-cjs.js plainjs",
    "build:mjs": "tsc --module nodenext --outDir ./dist/mjs",
    "build:jsr": "node ../../build.jsr.js . ./dist/jsr",
    "build": "npm run build:mjs && npm run build:cjs && npm run build:jsr",
    "prepack": "npm run build",
    "pretest": "npm run build",
    "test": "node test/CommonJS.cjs && vitest run",
    "pretest:performance": "npm run build",
    "test:performance": "vitest run --config vitest.performance.config.ts"
  },
  "license": "MIT",
  "tags": [
    "json",
    "stream"
  ],
  "files": [
    "dist",
    "src",
    "!dist/*.tsbuildinfo",
    "!dist/jsr"
  ]
}
