{
  "name": "express-fast-json-stringify",
  "version": "2.0.0",
  "description": "With express-fast-json-stringify, you can leverage fast-json-stringify in your Express application to improve JSON serialization performance",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://github.com/nigrosimone/express-fast-json-stringify",
  "license": "MIT",
  "keywords": [
    "express",
    "fast-json-stringify",
    "json",
    "stringify",
    "schema",
    "jsonschema",
    "validator",
    "json-schema"
  ],
  "scripts": {
    "build": "run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"{src,example}/**/*.ts\" --write",
    "fix:lint": "eslint . --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint .",
    "test:prettier": "prettier \"{src,example}/**/*.ts\" --list-different",
    "test:spelling": "cspell \"{README.md,.github/**/*.md,src/**/*.ts,example/**/*.ts}\"",
    "test:types": "tsc -p tsconfig.spec.json",
    "test:unit": "vitest run",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:test": "vitest",
    "cov": "run-s cov:check cov:open",
    "cov:check": "vitest run --coverage",
    "cov:open": "open-cli coverage/index.html",
    "doc": "run-s doc:html doc:open",
    "doc:html": "typedoc src/index.ts --out build/docs",
    "doc:open": "open-cli build/docs/index.html",
    "doc:json": "typedoc src/index.ts --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "reset-hard": "git clean -dfx && git reset --hard && npm i",
    "prepare-release": "run-s reset-hard test cov:check doc:html release doc:publish",
    "example": "tsx example/index.ts",
    "release": "release-it",
    "example:openapi": "tsx example/openapi.ts",
    "prepare": "husky"
  },
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "fast-json-stringify": "^6.2.0 || ^7.0.0"
  },
  "devDependencies": {
    "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
    "@eslint/js": "^10.0.1",
    "@release-it/conventional-changelog": "^11.0.1",
    "@types/express": "^5.0.6",
    "@types/node": "^26.1.1",
    "@types/supertest": "^7.2.1",
    "@vitest/coverage-v8": "^4.1.10",
    "cspell": "^10.0.1",
    "eslint": "^10.8.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-functional": "^10.0.0",
    "eslint-plugin-import-x": "^4.17.1",
    "express": "^5.2.1",
    "fulmine.js": "^5.21.2",
    "gh-pages": "^6.3.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.2.0",
    "npm-run-all2": "^9.0.2",
    "open-cli": "^9.0.0",
    "prettier": "^3.9.6",
    "release-it": "^20.2.1",
    "supertest": "^7.2.2",
    "tsx": "^4.23.1",
    "typedoc": "^0.28.20",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.65.0",
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "express": "^4.16.0 || ^5.0.0"
  },
  "files": [
    "build/main",
    "build/module",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "prettier": {
    "singleQuote": true,
    "printWidth": 180
  },
  "lint-staged": {
    "*": "prettier --write --ignore-unknown"
  }
}
