{
  "name": "@danielsimonjr/mathts-functions",
  "version": "0.64.3",
  "description": "Mathematical functions for MathTS - arithmetic, algebra, trigonometry, statistics, and more",
  "author": "Daniel Simon Jr.",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "types",
    "README.md"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format esm --clean && tsc -p tsconfig.dts.json && node scripts/copy-wasm.mjs",
    "dev": "tsup src/index.ts --format esm --dts --watch",
    "test": "vitest run",
    "test:diff": "node tests/diff-special.test.mjs && node tests/diff-elementwise.test.mjs && node tests/diff-fusion.test.mjs",
    "golden:gen": "python -X utf8 tests/golden/gen_special_goldens.py",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "oxlint src",
    "lint:fix": "oxlint src --fix",
    "clean": "rm -rf dist",
    "build:prod": "tsup src/index.ts --format esm --clean --minify --treeshake"
  },
  "dependencies": {
    "@danielsimonjr/mathts-core": "^0.15.4",
    "@danielsimonjr/mathts-expression": "^0.8.1",
    "@danielsimonjr/mathts-gpu": "^0.2.1",
    "@danielsimonjr/mathts-matrix": "^0.7.4",
    "@danielsimonjr/mathts-parallel": "^0.6.6",
    "bignumber.js": "^11.1.5",
    "complex.js": "^2.2.5",
    "decimal.js": "^10.4.3",
    "escape-latex": "^1.2.0",
    "fraction.js": "^5.2.1",
    "javascript-natural-sort": "^0.7.1",
    "seedrandom": "^3.0.5",
    "tiny-emitter": "^2.1.0",
    "typed-function": "npm:@danielsimonjr/typed-function@5.0.0-alpha.4"
  },
  "devDependencies": {
    "@types/node": "^26.4.0",
    "@webgpu/types": "^0.1.72",
    "tsup": "^8.0.0",
    "typescript": "^7.0.2",
    "vitest": "^5.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/danielsimonjr/MathTS.git",
    "directory": "functions"
  },
  "keywords": [
    "math",
    "typescript",
    "functions",
    "arithmetic",
    "algebra",
    "trigonometry",
    "statistics"
  ]
}
