symlink-dir
Version:
Cross-platform directory symlinking
65 lines • 1.41 kB
JSON
{
"name": "symlink-dir",
"version": "6.0.5",
"description": "Cross-platform directory symlinking",
"main": "dist/index.js",
"files": [
"dist/",
"!*.map"
],
"typings": "dist/index.d.ts",
"bin": "dist/cli.js",
"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": "^20.14.10",
"@types/tape": "^5.6.4",
"rimraf": "^3.0.2",
"tape": "^5.8.1",
"tempy": "^1.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"write-json-file": "^4.3.0"
},
"dependencies": {
"better-path-resolve": "^1.0.0",
"rename-overwrite": "^6.0.2"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
},
"engines": {
"node": ">=18.12"
},
"scripts": {
"pretest": "rimraf node_modules/src",
"test": "ts-node test/sync.ts && ts-node test/async.ts",
"premd": "rimraf node_modules/src && npm run tsc",
"tsc": "rimraf dist && tsc"
}
}