-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 834 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
{
"name": "esbuild-html-plugin",
"version": "1.1.0",
"description": "An esbuild plugin that generates an HTML file.",
"repository": {
"type": "git",
"url": "https://github.com/clebert/esbuild-html-plugin.git"
},
"license": "MIT",
"author": "Clemens Akens",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"compile:check": "tsc",
"compile:emit": "tsc --project tsconfig.emit.json",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"release": "npm version",
"postrelease": "git push --follow-tags"
},
"devDependencies": {
"@types/node": "^20.12.12",
"onecfg-lib-eslint": "^1.1.0",
"esbuild": "^0.21.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}