{
  "name": "@formulajs/formulajs",
  "version": "4.6.0",
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
  "author": "Formulajs",
  "homepage": "https://github.com/formulajs/formulajs#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/formulajs/formulajs.git"
  },
  "bugs": {
    "url": "https://github.com/formulajs/formulajs/issues"
  },
  "license": "MIT",
  "type": "module",
  "bin": {
    "formulajs": "./bin/cli.js"
  },
  "main": "./lib/cjs",
  "module": "./lib/esm",
  "unpkg": "./lib/browser/formula.min.js",
  "jsdelivr": "./lib/browser/formula.min.js",
  "exports": {
    ".": {
      "import": {
        "types": "./types/esm/index.d.mts",
        "default": "./lib/esm/index.mjs"
      },
      "require": {
        "types": "./types/cjs/index.d.cts",
        "default": "./lib/cjs/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "types": "./types/cjs/index.d.cts",
  "files": [
    "bin/cli.js",
    "lib",
    "types"
  ],
  "scripts": {
    "prebuild": "npm run prettier && npm run lint && npm run test:coverage",
    "build": "rollup -c && npm run types",
    "format": "npm run prettier:fix && npm run lint:fix",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "prettier": "prettier --check .",
    "prettier:fix": "prettier --write .",
    "stats": "node ./bin/implementation-stats.js",
    "test": "mocha --recursive",
    "test:browser": "mocha --recursive --reporter mochawesome",
    "test:coverage": "c8 mocha --recursive",
    "test:watch": "mocha --recursive --watch --parallel --reporter min",
    "types": "tsc"
  },
  "dependencies": {
    "bessel": "^1.0.2",
    "jstat": "^1.9.6"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.28.5",
    "@eslint/js": "^9.39.2",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "c8": "^10.1.3",
    "chai": "^6.2.2",
    "eslint": "^9.39.2",
    "globals": "^16.5.0",
    "jsdom": "^27.4.0",
    "mocha": "^11.7.5",
    "mochawesome": "^7.1.4",
    "prettier": "^3.7.4",
    "rollup": "^4.54.0",
    "typescript": "^5.9.3"
  }
}
