forked from vladshcherbin/rollup-plugin-delete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@kineticcafe/rollup-plugin-delete",
"version": "3.0.1",
"type": "module",
"contributors": [
"Vlad Shcherbin <vlad.shcherbin@gmail.com>",
"Austin Ziegler <aziegler@kineticcommerce.com>"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"description": "Delete files and folders using Rollup",
"engines": {
"node": ">= 16"
},
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"files": ["dist", "README.md"],
"keywords": [
"rollup",
"rollup-plugin",
"delete",
"clear",
"clean",
"remove",
"file",
"folder",
"directory"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kineticcafe/rollup-plugin-delete.git"
},
"scripts": {
"all:ci": "pnpm run build && pnpm run test --run && pnpm run check && publint",
"build": "tsc -p . && rollup -c",
"clean": "rimraf dist",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"postpublish": "pnpm run clean",
"prepublishOnly": "pnpm check && pnpm test && pnpm clean && pnpm build && pnpm publint",
"test": "vitest"
},
"dependencies": {
"globby": "^14.0.2",
"is-glob": "^4.0.3",
"is-path-cwd": "^3.0.0",
"is-path-inside": "^4.0.0",
"p-map": "^7.0.2",
"rimraf": "^6.0.1",
"slash": "^5.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/fs-extra": "^11.0.4",
"@types/graceful-fs": "^4.1.9",
"@types/is-glob": "^4.0.4",
"@types/node": "^20.14.9",
"@types/rollup-plugin-auto-external": "^2.0.5",
"fs-extra": "^11.2.0",
"publint": "^0.3.0",
"replace-in-file": "^8.2.0",
"rollup": "^4.24.0",
"rollup-plugin-auto-external": "^2.0.0",
"typescript": "^5.6.3",
"vitest": "^3.0.4"
},
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}