{
  "name": "exprify",
  "version": "1.0.9",
  "description": "A powerful math expression parser and evaluator with runtime data-type checking",
  "type": "module",
  "main": "dist/exprify.cjs.cjs",
  "module": "dist/exprify.esm.js",
  "exports": {
    ".": {
      "import": "./dist/exprify.esm.js",
      "require": "./dist/exprify.cjs.cjs"
    }
  },
  "browser": "dist/exprify.js",
  "unpkg": "dist/exprify.min.js",
  "publishConfig": {
    "access": "public"
  },
  "bin": {
    "exprify": "./bin/cli.mjs"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "overrides": {
    "test-exclude": "^7.0.1",
    "glob": "^13.0.6"
  },
  "scripts": {
    "start": "node src/index.js",
    "dev": "node --watch src/index.js",
    "clean": "node tools/clean.js",
    "build": "npm run clean && rollup -c",
    "test": "node tools/test.js",
    "test:coverage": "node tools/test.js --coverage",
    "size": "size-limit",
    "lint": "eslint src/ test/",
    "lint:fix": "eslint --fix src/ test/",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "typecheck": "tsc --noEmit",
    "prepare": "husky"
  },
  "jest": {
    "testMatch": [
      "**/test/**/*.js"
    ]
  },
  "size-limit": [
    {
      "path": "dist/exprify.min.js",
      "limit": "30 KB"
    },
    {
      "path": "dist/exprify.esm.js",
      "limit": "60 KB"
    }
  ],
  "keywords": [
    "math",
    "parser",
    "expression",
    "evaluator",
    "calculator",
    "javascript"
  ],
  "author": "Nirmal Paul",
  "license": "GPL-3.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/code-hemu/exprify.git"
  },
  "bugs": {
    "url": "https://github.com/code-hemu/exprify/issues"
  },
  "homepage": "https://github.com/code-hemu/exprify#readme",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@rollup/plugin-commonjs": "^29.0.3",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-terser": "^1.0.0",
    "@size-limit/file": "^12.1.0",
    "eslint": "^10.4.1",
    "globals": "^17.6.0",
    "husky": "^9.1.7",
    "jest": "^30.4.2",
    "lint-staged": "^17.0.7",
    "prettier": "^3.8.4",
    "rollup": "^4.0.0",
    "size-limit": "^12.1.0",
    "typescript": "^6.0.3"
  }
}
