{
  "name": "html-safe-json",
  "version": "2.0.3",
  "repository": "git@github.com:dzek69/html-safe-json.git",
  "author": "Jacek Nowacki",
  "license": "MIT",
  "scripts": {
    "test": "NODE_ENV=test jest",
    "docs": "typedoc src/index.ts --skipErrorChecking --out docs --includeVersion",
    "compile": "pnpm run compile:esm && pnpm run compile:cjs",
    "compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
    "compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
    "lint:fix": "pnpm run lint --fix",
    "prepack": "pnpm run compile",
    "prepublishOnly": "pnpm audit && pnpm run lint && pnpm run test && pnpm run docs",
    "prepare": "husky install",
    "start:dev": "nodemon",
    "start:benchmark": "pnpm run compile:cjs && node benchmark/benchmark.cjs",
    "start:dev:compatibility": "TS_NODE_FILES=true pnpm run start:dev",
    "updates": "pnpm dlx npm-check-updates --dep prod",
    "updates:dev": "pnpm dlx npm-check-updates --dep dev",
    "updates:all": "pnpm dlx npm-check-updates"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "types": "./esm/index.d.ts",
      "default": "./esm/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./esm/index.d.ts",
  "module": "./esm/index.js",
  "type": "module",
  "devDependencies": {
    "@babel/core": "^7.23.9",
    "@babel/preset-env": "^7.23.9",
    "@babel/preset-typescript": "^7.23.3",
    "@dzek69/eslint-config-base": "^2.5.0",
    "@dzek69/eslint-config-import": "^1.3.0",
    "@dzek69/eslint-config-import-typescript": "^1.0.1",
    "@dzek69/eslint-config-typescript": "^1.1.1",
    "@knodes/typedoc-plugin-pages": "^0.23.4",
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.12",
    "@typescript-eslint/eslint-plugin": "^5.62.0",
    "@typescript-eslint/parser": "^5.62.0",
    "babel-plugin-module-extension": "^0.1.3",
    "eslint": "^8.56.0",
    "eslint-plugin-import": "^2.29.1",
    "express": "^4.18.2",
    "fs-extra": "^11.2.0",
    "htmlescape": "^1.1.1",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "must": "^0.13.4",
    "nodemon": "^3.0.3",
    "prettier": "^2.8.8",
    "resolve-tspaths": "^0.8.17",
    "ts-node": "^10.9.2",
    "typedoc": "^0.23.28",
    "typescript": "^5.3.3"
  },
  "husky": {
    "hooks": {
      "pre-push": "pnpm run prepublishOnly && pnpm run compile"
    }
  },
  "libraryTemplate": {
    "version": "3.11.2",
    "language": "typescript",
    "fixDefaultForCommonJS": true,
    "jsx": false
  }
}
