{
  "name": "@bscotch/pathy",
  "version": "2.12.1",
  "description": "A toolkit for simplifying working with paths and files.",
  "keywords": [
    "path",
    "file",
    "filesystem",
    "fs",
    "read",
    "write",
    "filepath",
    "directory",
    "normalize",
    "absolute",
    "sort",
    "relative"
  ],
  "homepage": "https://github.com/bscotch/jslib/tree/develop/packages/pathy#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/bscotch/jslib.git",
    "directory": "packages/pathy"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "fs-extra": "11.1.1",
    "json5": "^2.2.3",
    "tslib": "^2.6.2",
    "yaml": "2.3.2",
    "@bscotch/utility": "7.2.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.6",
    "@types/fs-extra": "^11.0.2",
    "@types/mocha": "^10.0.1",
    "chai": "^4.3.8",
    "mocha": "^10.2.0",
    "rimraf": "^5.0.1",
    "type-fest": "^4.3.1",
    "typescript": "5.2.2",
    "zod": "^3.22.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc --build",
    "clean": "rimraf build dist *.tsbuildinfo **/*.tsbuildinfo",
    "test": "mocha --config ../../config/.mocharc.cjs",
    "test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999",
    "watch": "tsc --build --watch"
  }
}