makedirp
Version:
The 'mkdir -p' command implementation for nodejs.Make directory recursively.
60 lines (59 loc) • 1.35 kB
JSON
{
"name": "makedirp",
"version": "1.3.3",
"description": "The 'mkdir -p' command implementation for nodejs.Make directory recursively.",
"type": "module",
"bin": "./dist/bin.mjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"type-check": "tsc --strict --noEmit",
"format": "prettier --write src/",
"build": "unbuild",
"release": "unbuild && npm publish"
},
"repository": {
"type": "git",
"url": "git+git@github.com:luoxiangfan/mkdirp.git"
},
"keywords": [
"mkdir",
"makedir",
"makedirp",
"mkdir -p",
"directory",
"folder",
"recursive"
],
"author": "lxf <infiniment@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luoxiangfan/mkdirp/issues"
},
"homepage": "https://github.com/luoxiangfan/mkdirp#readme",
"devDependencies": {
"@types/node": "^25.2.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1"
},
"dependencies": {
"@lxf2513/mkdir-recursive": "^1.3.2"
}
}