{
  "name": "@borgar/fx",
  "version": "5.0.5",
  "description": "Utilities for working with Excel formulas",
  "type": "module",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.cts",
      "default": "./dist/index.js"
    },
    "./xlsx": {
      "require": "./dist/xlsx/index.cjs",
      "types": "./dist/xlsx/index.d.cts",
      "default": "./dist/xlsx/index.js"
    }
  },
  "module": "./dist/index.js",
  "typings": "./dist/index.d.cts",
  "scripts": {
    "benchmark": "node --experimental-strip-types benchmark/benchmark.ts",
    "lint": "eslint lib/*.ts",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "check": "npm run test && npm run lint && npm run typecheck",
    "build": "tsup",
    "build:all": "npm run docs && npm run build",
    "docs": "typedoc && concat-md tempdocs > docs/API.md && rm -rf tempdocs",
    "release": "git diff --exit-code && tsup && npm publish && V=$(jq -r .version package.json) && git tag -a $V -m $V && git push origin $V && gh release create $V --generate-notes"
  },
  "tsup": {
    "entry": [
      "lib/index.ts",
      "lib/xlsx/index.ts"
    ],
    "format": [
      "esm",
      "cjs"
    ],
    "splitting": false,
    "sourcemap": true,
    "clean": true,
    "dts": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/borgar/fx.git"
  },
  "bugs": {
    "url": "https://github.com/borgar/fx/issues"
  },
  "browserslist": [
    "defaults",
    "not IE 11",
    "maintained node versions"
  ],
  "keywords": [
    "excel",
    "xlsx",
    "formula",
    "spreadsheet"
  ],
  "author": "Borgar Þorsteinsson <borgar@borgar.net> (http://borgar.net/)",
  "license": "MIT",
  "devDependencies": {
    "@borgar/eslint-config": "~4.0.1",
    "concat-md": "~0.5.1",
    "benchmark": "~2.1.4",
    "eslint": "~9.39.0",
    "typescript": "~5.9.3",
    "typescript-eslint": "~8.55.0",
    "vitest": "~4.1.4",
    "globals": "~17.5.0",
    "typedoc": "~0.28.19",
    "typedoc-plugin-markdown": "~4.11.0",
    "tsup": "~8.5.1"
  }
}
