{
  "name": "highcharts-export-server",
  "author": "Highsoft AS <support@highcharts.com> (http://www.highcharts.com/about)",
  "license": "MIT",
  "type": "module",
  "version": "5.1.0",
  "main": "./dist/index.esm.js",
  "engines": {
    "node": ">=18.12.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "bin",
    "templates",
    "install.js",
    "lib",
    "msg",
    "public"
  ],
  "repository": {
    "url": "https://github.com/highcharts/node-export-server",
    "type": "git"
  },
  "bin": {
    "highcharts-export-server": "./bin/cli.js"
  },
  "scripts": {
    "install": "node ./install.js",
    "prestart": "rm -rf tmp || del -rf tmp /Q && node ./node_modules/puppeteer/install.mjs",
    "start": "node ./bin/cli.js --enableServer 1 --logLevel 2",
    "start:dev": "nodemon ./bin/cli.js --enableServer 1 --logLevel 4",
    "start:debug": "node --inspect-brk=9229 ./bin/cli.js --enableDebug 1 --enableServer 1 --logLevel 4",
    "format": "prettier ./ --config .prettierrc.json --write",
    "lint": "eslint ./ --fix",
    "cli-tests": "node ./tests/cli/cli_test_runner.js",
    "cli-tests-single": "node ./tests/cli/cli_test_runner_single.js",
    "http-tests": "node ./tests/http/http_test_runner.js",
    "http-tests-single": "node ./tests/http/http_test_runner_single.js",
    "node-tests": "node ./tests/node/node_test_runner.js",
    "node-tests-single": "node ./tests/node/node_test_runner_single.js",
    "prepare": "husky || true",
    "prepack": "npm run build",
    "build": "rollup -c",
    "unit:test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
  },
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-prettier": "^5.1.3",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.7",
    "nodemon": "^3.1.4",
    "prettier": "^3.3.2",
    "rollup": "^4.18.0"
  },
  "dependencies": {
    "colors": "1.4.0",
    "cors": "^2.8.5",
    "dompurify": "^3.1.5",
    "dotenv": "^16.4.5",
    "express": "^4.19.2",
    "express-rate-limit": "^7.3.1",
    "highcharts": "^12.4.0",
    "https-proxy-agent": "^7.0.5",
    "jsdom": "^24.1.0",
    "multer": "^1.4.5-lts.1",
    "prompts": "^2.4.2",
    "puppeteer": "^22.12.1",
    "tarn": "^3.0.2",
    "uuid": "^10.0.0",
    "zod": "^3.23.8"
  },
  "lint-staged": {
    "*.js": "npx eslint --cache --fix",
    "*.{js,css,md}": "npx prettier --write"
  }
}
