{
  "name": "read-json-safe",
  "version": "4.0.0",
  "description": "Read JSON files without try catch",
  "license": "MIT",
  "private": false,
  "author": {
    "name": "Connor White",
    "email": "oss@bconnorwhite.com",
    "url": "https://bconnorwhite.com"
  },
  "homepage": "https://github.bconnorwhite.com/read-json-safe#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bconnorwhite/read-json-safe.git"
  },
  "bugs": "https://github.com/bconnorwhite/read-json-safe/issues",
  "keywords": [
    "json",
    "read",
    "file",
    "safe",
    "try",
    "catch",
    "ENOENT"
  ],
  "type": "module",
  "main": "./build/index.js",
  "exports": {
    ".": "./build/index.js"
  },
  "types": "./build/index.d.ts",
  "files": [
    "build/**/!(tsconfig.tsbuildinfo)"
  ],
  "engines": {
    "bun": ">=1.3.0",
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsc --project ./tsconfig.json",
    "coverage": "c8 --reporter=text --reporter=lcovonly tsx --test ./test/*.test.ts",
    "lint": "npm run lint:package && npm run lint:source",
    "lint:package": "npmPkgJsonLint .",
    "lint:source": "ESLINT_USE_FLAT_CONFIG=false eslint src test --ext .ts",
    "prepack": "npm run build",
    "release": "npm publish",
    "test": "npm run test:node",
    "test:node": "tsx --test ./test/*.test.ts",
    "typecheck": "npm run build && tsc --project ./test/tsconfig.json"
  },
  "dependencies": {
    "parse-json-object": "^3.0.1",
    "read-file-safe": "^2.1.1",
    "types-json": "^5.0.0"
  },
  "devDependencies": {
    "@bconnorwhite/eslint-config": "^1.0.0",
    "@bconnorwhite/tsconfig": "^1.0.0",
    "@types/mock-fs": "^4.13.0",
    "@types/node": "^24.3.0",
    "@typescript-eslint/eslint-plugin": "^8.56.1",
    "@typescript-eslint/parser": "^8.56.1",
    "@vitest/browser": "^3.2.4",
    "c8": "^10.1.3",
    "eslint": "^9.39.4",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-json": "^4.0.1",
    "mock-fs": "^5.5.0",
    "npm-package-json-lint": "^9.1.0",
    "npm-package-json-lint-config-bconnorwhite": "^1.0.0",
    "playwright": "^1.58.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  },
  "eslintConfig": {
    "extends": "@bconnorwhite/eslint-config"
  },
  "npmpackagejsonlint": {
    "extends": "npm-package-json-lint-config-bconnorwhite/oss"
  }
}
