{
  "name": "unit-path",
  "private": false,
  "version": "0.0.6",
  "author": "humandetail",
  "keywords": [
    "unitPath",
    "cruve",
    "points",
    "path",
    "bezier",
    "arcs",
    "line"
  ],
  "description": "Get points from paths that like straight lines, quadratic Bessel curves, cubic Bessel curves, circles, arcs",
  "type": "module",
  "main": "dist/unit-path.js",
  "brower": "dist/unit-path.iife.js",
  "module": "dist/unit-path.js",
  "files": ["dist/*"],
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/unit-path.js",
      "require": "./dist/unit-path.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "unpkg": "dist/unit-path.js",
  "jsdelivr": "dits/unit-path.js",
  "homepage": "https://github.com/humandetail/unit-path#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/humandetail/unit-path.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/humandetail/unit-path/issues"
  },
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "prepare": "husky install",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "codecov": "codecov",
    "lint": "eslint --fix"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.1.2",
    "@commitlint/config-conventional": "^17.1.0",
    "@typescript-eslint/eslint-plugin": "^5.40.0",
    "@typescript-eslint/parser": "^5",
    "@vitest/coverage-c8": "^0.24.3",
    "codecov": "^3.8.3",
    "commitizen": "^4.2.5",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.0.1",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-n": "^15.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "eslint-config-standard-with-typescript": "^23.0.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.3",
    "typescript": "^4.6.4",
    "vite": "^3.1.0",
    "vite-plugin-dts": "^1.6.1",
    "vitest": "^0.24.3"
  },
  "lint-staged": {
    "*.{js,ts}": "eslint --fix"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
