-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "rollup-plugin-delete",
"description": "Delete files and folders using Rollup",
"version": "3.0.1",
"author": "Vlad Shcherbin <[email protected]>",
"repository": "vladshcherbin/rollup-plugin-delete",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"lint": "eslint",
"postpublish": "pnpm clean",
"prepublishOnly": "pnpm lint && pnpm test && pnpm clean && pnpm build",
"test": "vitest"
},
"dependencies": {
"del": "^8.0.0"
},
"peerDependencies": {
"rollup": "*"
},
"devDependencies": {
"@shcherbin/eslint-config": "^0.15.10",
"@tsconfig/node18": "^18.2.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18",
"eslint": "^9.20.1",
"fs-extra": "^11.3.0",
"replace-in-file": "^8.3.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"files": [
"dist",
"readme.md"
],
"keywords": [
"rollup",
"rollup-plugin",
"delete",
"clear",
"clean",
"remove",
"file",
"folder",
"directory"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=18"
},
"type": "module",
"license": "MIT"
}