{
  "name": "sparse-matrix",
  "version": "1.0.0",
  "description": "Sparse Matrix TypeScript Implementation.",
  "keywords": [
    "sparse",
    "matrix"
  ],
  "author": "JacobLinCool <jacoblincool@gmail.com> (https://github.com/JacobLinCool)",
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "devDependencies": {
    "@types/jest": "^28.1.8",
    "@types/node": "^18.8.3",
    "@typescript-eslint/eslint-plugin": "^5.39.0",
    "@typescript-eslint/parser": "^5.39.0",
    "eslint": "^8.24.0",
    "eslint-config-prettier": "^8.5.0",
    "jest": "^28.1.3",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.8",
    "tsup": "^6.2.3",
    "typedoc": "^0.23.15",
    "typescript": "^4.8.4"
  },
  "homepage": "https://jacoblincool.github.io/sparse-matrix/",
  "repository": {
    "type": "git",
    "url": "https://github.com/JacobLinCool/sparse-matrix.git"
  },
  "bugs": {
    "url": "https://github.com/JacobLinCool/sparse-matrix/issues"
  },
  "scripts": {
    "test": "jest --coverage",
    "dev": "tsup --watch",
    "build": "tsup",
    "docs": "typedoc src",
    "format": "prettier --write . --ignore-path .gitignore",
    "lint": "eslint ."
  }
}