{
  "name": "ts-formula-parser",
  "version": "0.0.3",
  "description": "excel formula parser based on typescript",
  "repository": "https://github.com/ChasLui/ts-formula-parser",
  "type": "module",
  "main": "build/index.mjs",
  "module": "build/index.mjs",
  "types": "index.d.ts",
  "unpkg": "build/index.umd.min.js",
  "jsdelivr": "build/index.umd.min.js",
  "browser": "build/index.mjs",
  "exports": {
    ".": {
      "import": "./build/index.mjs",
      "require": "./build/index.cjs",
      "browser": "./build/index.mjs",
      "types": "./index.d.ts",
      "default": "./build/index.mjs"
    }
  },
  "files": [
    "build/",
    "index.d.ts",
    "index.js",
    "formulas/",
    "grammar/",
    "ssf/",
    "*.md"
  ],
  "scripts": {
    "test": "vitest run",
    "test:f": "vitest run test/formulas",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build && npm run test",
    "postpublish": "echo 'Published successfully! Documentation will be updated by GitHub Actions.'",
    "build": "unbuild",
    "build:dev": "unbuild --stub",
    "typecheck": "tsc --noEmit",
    "lint": "eslint . --ext .ts --fix",
    "lint:check": "eslint . --ext .ts",
    "analyze": "echo 'bundle analyze is not supported by unbuild directly'",
    "diagram": "npx tsx grammar/diagram.ts",
    "docs": "npm run diagram && jsdoc --configure .jsdoc.json --verbose",
    "publish:docs": "npm run docs && npm run coverage && gh-pages -d docs",
    "coverage": "vitest run --coverage",
    "coverage:f": "vitest run test/formulas --coverage",
    "coverage:server": "vitest run --coverage --reporter=lcov | coveralls",
    "perf": "node scripts/perf-test.mjs",
    "dev": "npm run build:dev && npm run test:watch",
    "ci": "npm run typecheck && npm run test && npm run build"
  },
  "keywords": [
    "excel",
    "formula",
    "spreadsheet",
    "javascript",
    "js",
    "parser",
    "excel-formula"
  ],
  "author": "ChasLui",
  "license": "MIT",
  "dependencies": {
    "bahttext": "^2.3.3",
    "bessel": "^1.0.2",
    "chevrotain": "^11.0.3",
    "jstat": "^1.9.6"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^2.1.1",
    "coveralls-next": "^5.0.0",
    "docdash": "^2.0.2",
    "gh-pages": "^6.3.0",
    "jsdoc": "^4.0.4",
    "release-it": "^19.0.4",
    "taffydb": "^2.7.3",
    "typescript": "^5.6.3",
    "unbuild": "^3.6.1",
    "vitest": "^2.1.1"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
  "release-it": {
    "git": {
      "commitMessage": "chore(release): v${version}",
      "tagName": "v${version}",
      "tagAnnotation": "Release v${version}",
      "requireCleanWorkingDir": true
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": true
    }
  }
}
