-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "esbuild-plugin-output-reset",
"version": "2.0.2",
"description": "ESBuild plugin to reset output directory for new build",
"main": "index.js",
"typings": "./index.d.js",
"keywords": [
"ESBuild",
"esbuild",
"plugin"
],
"files": [
"./cjs.cjs",
"./esm.mjs",
"./index.d.ts"
],
"exports": {
".": {
"import": "./esm.mjs",
"require": "./cjs.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yamitsushi/esbuild-plugin-output-reset.git"
},
"author": "Russel Dave <yamitsushi@gmail.com> (https://github.com/yamitsushi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yamitsushi/esbuild-plugin-output-reset/issues"
},
"homepage": "https://github.com/yamitsushi/esbuild-plugin-output-reset#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"esbuild": "^0.17.5"
}
}