{
  "name": "@jacob-alford/matrix-ts",
  "version": "1.1.1",
  "description": "fp-ts style mathematics library featuring: linear algebra, numerical methods, polynomials, and statistics",
  "homepage": "https://jacob-alford.github.io/matrix-ts/",
  "repository": "https://github.com/jacob-alford/matrix-ts",
  "license": "MIT",
  "author": "Jacob Alford <jacob.alford@me.com>",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "main": "./index.js",
  "module": "./_esm/index.js",
  "exports": {
    ".": {
      "import": "./_esm/index.js",
      "require": "./index.js"
    },
    "./*": {
      "import": "./_esm/*.js",
      "require": "./*.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./*.d.ts"
      ]
    }
  },
  "bugs": {
    "url": "https://github.com/jacob-alford/matrix-ts/issues"
  },
  "lint-staged": {
    "(src/**/*.ts": [
      "eslint --fix-type layout --fix --cache",
      "prettier --write",
      "jest --findRelatedTests --silent",
      "pre-push"
    ]
  },
  "peerDependencies": {
    "fp-ts": "^2.9.5"
  },
  "dependencies": {}
}