{
  "name": "json-beautiful-render",
  "version": "2.1.7",
  "description": "json beautiful render",
  "keywords": [
    "json",
    "json render",
    "json beautiful",
    "json pretty",
    "json html"
  ],
  "author": "taoliujun <taoliujun@qq.com>",
  "homepage": "https://github.com/taoliujun/json-beautiful-render",
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "types": "./lib/types/index.d.ts",
  "main": "./lib/cjs/index.js",
  "_debug_main": "./src/index.ts",
  "exports": {
    "types": "./lib/types/index.d.ts",
    "require": "./lib/cjs/index.js",
    "export": "./lib/esm/index.js",
    "default": "./lib/cjs/index.js"
  },
  "files": [
    "lib",
    "*.md",
    "package.json"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/taoliujun/json-beautiful-render.git"
  },
  "bugs": {
    "url": "https://github.com/taoliujun/json-beautiful-render/issues"
  },
  "devDependencies": {
    "@changesets/changelog-git": "^0.2.0",
    "@changesets/cli": "^2.27.1",
    "@commitlint/cli": "^18.6.0",
    "@commitlint/config-conventional": "^18.6.0",
    "@taoliujun/eslint-config": "^2.1.0",
    "@testing-library/dom": "^9.3.4",
    "@tsconfig/node18": "^18.2.2",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.10.5",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "lint-staged": "^15.2.1",
    "ts-jest": "^29.1.2",
    "typescript": "^5.3.3",
    "webpack": "^5.90.0",
    "webpack-cli": "^5.1.4"
  },
  "scripts": {
    "changelog": "pnpm exec changeset add",
    "version": "pnpm exec changeset version",
    "release": "pnpm exec changeset publish",
    "release:token": "cp -f .npmrc .npmrc.bak && echo \"\nregistry=https://registry.npmjs.org\n//registry.npmjs.org/:_authToken=${NPM_TOKEN}\" >> .npmrc && npm exec changeset publish && cp -f .npmrc.bak .npmrc && rm .npmrc.bak",
    "test": "pnpm exec jest",
    "test:coverage": "pnpm exec jest --config=jest.coverage.config.js",
    "lint": "eslint src --ext .ts,.js --cache",
    "lint:ts": "tsc --noEmit",
    "clean": "rm -rf lib/",
    "build:readme": "cp -f ./README.zh_CN.md ./README.md",
    "build:types": "tsc -d --emitDeclarationOnly --declarationDir lib/types",
    "build:cjs": "tsc --module CommonJS --moduleResolution Node --outDir lib/cjs",
    "build:esm": "tsc --module ES6 --moduleResolution Bundler --outDir lib/esm",
    "build:umd": "pnpm run build:cjs --outDir lib/umd/_tmp && webpack --config ./config/webpack.umd.js && rm -rf lib/umd/_tmp",
    "build": "pnpm run clean && pnpm run build:types && pnpm run build:esm && pnpm run build:cjs && pnpm run build:umd && pnpm run build:readme"
  }
}