{
  "name": "@algorithm.ts/gcd",
  "version": "4.0.5",
  "description": "GCD + Euclidean algorithm",
  "author": {
    "name": "guanghechen",
    "url": "https://github.com/guanghechen/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/gcd@4.0.4",
    "directory": "packages/gcd"
  },
  "homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/gcd@4.0.4/packages/gcd#readme",
  "keywords": [
    "algorithm",
    "gcd",
    "extended euclidean algorithm"
  ],
  "type": "module",
  "exports": {
    "types": "./lib/types/index.d.ts",
    "import": "./lib/esm/index.mjs",
    "require": "./lib/cjs/index.cjs"
  },
  "source": "./src/index.ts",
  "types": "./lib/types/index.d.ts",
  "main": "./lib/cjs/index.cjs",
  "module": "./lib/esm/index.mjs",
  "license": "MIT",
  "files": [
    "lib/",
    "!lib/**/*.map",
    "package.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@algorithm.ts/internal": "^0.0.1"
  },
  "scripts": {
    "clean": "rimraf lib",
    "build": "rollup -c ../../rollup.config.mjs",
    "test": "vitest run --config ../../vitest.config.ts",
    "test:coverage": "vitest run --config ../../vitest.config.ts --coverage",
    "test:update": "vitest run --config ../../vitest.config.ts -u"
  }
}