-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "vite-plugin-html-minifier-terser",
"version": "3.8.0",
"description": "vite打包插件压缩html",
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
}
},
"scripts": {
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcly861204/vite-plugin-html-minifier-terser.git"
},
"keywords": [
"vite",
"node",
"plugin",
"html-minifier-terser"
],
"author": "tcly861204@hotmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/tcly861204/vite-plugin-html-minifier-terser/issues"
},
"homepage": "https://github.com/tcly861204/vite-plugin-html-minifier-terser#readme",
"dependencies": {
"html-minifier-terser": "^7.0.0-alpha.1"
},
"devDependencies": {
"@types/html-minifier-terser": "^7.0.0",
"@types/node": "^18.15.11",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^3.1.3"
}
}