{
  "name": "symlink-dir",
  "version": "10.0.1",
  "description": "Cross-platform directory symlinking",
  "type": "module",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist/",
    "!*.map"
  ],
  "typings": "dist/index.d.ts",
  "keywords": [
    "symlink",
    "symlinking",
    "junction",
    "directory",
    "dir",
    "folder"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pnpm/symlink-dir.git"
  },
  "author": {
    "name": "Zoltan Kochan",
    "email": "z@kochan.io",
    "url": "https://www.kochan.io"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/pnpm/symlink-dir/issues"
  },
  "homepage": "https://github.com/pnpm/symlink-dir#readme",
  "devDependencies": {
    "@types/node": "^25.5.0",
    "rimraf": "^6.1.3",
    "tempy": "^3.2.0",
    "typescript": "^5.9.3",
    "write-json-file": "^7.0.0"
  },
  "dependencies": {
    "better-path-resolve": "^2.0.0",
    "rename-overwrite": "^7.0.0"
  },
  "mos": {
    "plugins": [
      "readme"
    ],
    "installation": {
      "useShortAlias": true
    }
  },
  "engines": {
    "node": ">=22.13"
  },
  "scripts": {
    "pretest": "rimraf node_modules/src",
    "test": "node --experimental-strip-types --test test/sync.ts test/async.ts",
    "test:non-develop": "node --experimental-strip-types -r ./test/emulateWinNonDevelopMode.cjs --test test/sync.ts test/async.ts",
    "premd": "rimraf node_modules/src && npm run tsc",
    "tsc": "rimraf dist && tsc"
  }
}