rollup-plugin-delete
Version:
Delete files and folders using Rollup
57 lines • 1.21 kB
JSON
{
"name": "rollup-plugin-delete",
"description": "Delete files and folders using Rollup",
"version": "3.0.2",
"author": "Vlad Shcherbin <vlad.shcherbin@gmail.com>",
"repository": "vladshcherbin/rollup-plugin-delete",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"del": "^8.0.1"
},
"peerDependencies": {
"rollup": "*"
},
"devDependencies": {
"@shcherbin/eslint-config-node": "^0.4.1",
"@tsconfig/node18": "^18.2.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.0",
"eslint": "^9.39.1",
"fs-extra": "^11.3.2",
"replace-in-file": "^8.4.0",
"tsdown": "^0.17.2",
"typescript": "^5.9.3"
},
"files": [
"dist",
"readme.md"
],
"keywords": [
"rollup",
"rollup-plugin",
"delete",
"clear",
"clean",
"remove",
"file",
"folder",
"directory"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsdown",
"lint": "eslint",
"test": "node --test"
}
}