-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "esbuild-clean-plugin",
"version": "2.0.0",
"description": "An esbuild plugin to clean your build folder.",
"author": "Jonathan Wilsson <jonathan.wilsson@gmail.com>",
"keywords": [
"esbuild",
"plugin",
"clean"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint src test",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test": "vitest --run"
},
"engines": {
"node": ">=22.11.0"
},
"dependencies": {
"del": "^8.0.0"
},
"devDependencies": {
"@jwilsson/eslint-config": "^9.2.1",
"@jwilsson/prettier-config": "^9.2.1",
"@jwilsson/tsconfig": "^9.2.1",
"@types/node": "^24.8.1",
"@vitest/coverage-v8": "^4.0.3",
"esbuild": "^0.25.0",
"eslint": "^9.23.0",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.4.1",
"tempy": "^3.0.0",
"typescript": "^5.8.2",
"vitest": "^4.0.3"
},
"peerDependencies": {
"esbuild": ">=0.18.20"
},
"license": "MIT"
}