{
  "name": "@djthoms/simple-math-ast",
  "version": "1.2.0",
  "description": "Simple Math AST",
  "keywords": [
    "math-ast",
    "math",
    "math syntax tree",
    "syntax tree"
  ],
  "bugs": {
    "url": "https://github.com/atomicpages/simple-math-ast/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/atomicpages/simple-math-ast.git"
  },
  "license": "MIT",
  "author": "Esimov Miras",
  "contributors": [
    "Dennis Thompson"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.mts",
        "default": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    },
    "./tokenizer": {
      "import": {
        "types": "./dist/esm/tokenize/index.d.mts",
        "default": "./dist/esm/tokenize/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/tokenize/index.d.ts",
        "default": "./dist/cjs/tokenize/index.js"
      }
    },
    "./parser": {
      "import": {
        "types": "./dist/esm/parse/parse.d.mts",
        "default": "./dist/esm/parse/"
      },
      "require": "./dist/cjs/parse/parse.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "prebuild": "rm -rf dist",
    "build": "npm-run-all -p build:*",
    "lint": "eslint --ext .ts,.js src",
    "benchmark": "vitest bench --run",
    "test": "vitest run",
    "test:watch": "vitest",
    "build:cjs": "tsup --target es2020 -d dist/cjs --dts --sourcemap --format cjs `./scripts/fd.sh`",
    "build:esm": "tsup --target es2020 --dts -d dist/esm --sourcemap --format esm `./scripts/fd.sh`",
    "build:types": "tsc -p tsconfig.build.json",
    "check-types": "tsc --noEmit --emitDeclarationOnly false",
    "prepare": "husky install",
    "create-docs": "typedoc $(./scripts/fd.sh) --out docs",
    "pre-push": "npm-run-all -p check-types lint test"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.15.3",
    "@commitlint/cli": "^19.3.0",
    "@commitlint/config-conventional": "^19.2.2",
    "@djthoms/eslint-config": "^6.4.2",
    "@djthoms/prettier-config": "^4.4.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/ramda": "^0.30.0",
    "@vitest/coverage-v8": "^1.6.0",
    "glob": "^10.3.15",
    "husky": "^8.0.3",
    "lint-staged": "^15.2.2",
    "npm-run-all": "^4.1.5",
    "semantic-release": "^22.0.12",
    "ts-toolbelt": "^9.6.0",
    "tsup": "^8.0.2",
    "typedoc": "^0.25.13",
    "typescript": "^5.4.5",
    "vitest": "^1.6.0"
  },
  "dependencies": {
    "ramda": "^0.30.0"
  }
}
