{
  "name": "jsthermalcomfort",
  "version": "1.4.0",
  "description": "A JavaScript package to calculate thermophysiological, thermal comfort, thermal stress indices",
  "type": "module",
  "files": [
    "lib"
  ],
  "main": "./lib/esm/index.js",
  "types": "./lib/esm/types/index.d.ts",
  "scripts": {
    "clean": "rm -rf ./lib",
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:esm": "tsc -p ./configs/tsconfig.esm.json",
    "build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
    "test": "node --experimental-vm-modules ./node_modules/.bin/jest",
    "semantic-release": "semantic-release",
    "docs": "npx documentation build ./src/index.js -f html --github --config documentation.yml -a public --theme ./docs_theme/index.js -o docs",
    "format": "npx prettier . --write",
    "check:format": "npx prettier . --check",
    "prepack": "npm run build",
    "prepare": "husky"
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FedericoTartarini/jsthermalcomfort.git"
  },
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "thermal comfort",
    "heat stress",
    "predicted mean vote",
    "human thermophysiological modeling"
  ],
  "author": "Federico Tartarini",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/FedericoTartarini/jsthermalcomfort/issues"
  },
  "homepage": "https://federicotartarini.github.io/jsthermalcomfort/",
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "documentation": "^14.0.3",
    "github-slugger": "^2.0.0",
    "highlight.js": "^11.11.1",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "jsdoc": "^4.0.5",
    "lint-staged": "^16.4.0",
    "lodash": "^4.17.23",
    "prettier": "^3.8.1",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "mathjs": "^15.2.0",
    "node-fetch": "^3.3.2"
  }
}
