68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "vite-plugin-html",
|
|
"version": "3.2.2",
|
|
"description": "A plugin for vite to Minimize index.html and use lodash.template template syntax in index.html",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"CHANGELOG.md",
|
|
"README.md",
|
|
"README.zh_CN.md"
|
|
],
|
|
"keywords": [
|
|
"vite",
|
|
"html",
|
|
"minify",
|
|
"vite-plugin"
|
|
],
|
|
"author": "Vben",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vbenjs/vite-plugin-html",
|
|
"directory": "packages/core"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vbenjs/vite-plugin-html/issues"
|
|
},
|
|
"homepage": "https://github.com/vbenjs/vite-plugin-html/tree/master/#readme",
|
|
"dependencies": {
|
|
"@rollup/pluginutils": "^4.2.0",
|
|
"colorette": "^2.0.16",
|
|
"connect-history-api-fallback": "^1.6.0",
|
|
"consola": "^2.15.3",
|
|
"dotenv": "^16.0.0",
|
|
"dotenv-expand": "^8.0.2",
|
|
"ejs": "^3.1.6",
|
|
"fast-glob": "^3.2.11",
|
|
"fs-extra": "^10.0.1",
|
|
"html-minifier-terser": "^6.1.0",
|
|
"node-html-parser": "^5.3.3",
|
|
"pathe": "^0.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": ">=2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/types": "^7.17.0",
|
|
"@types/ejs": "^3.1.0",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/html-minifier-terser": "^6.1.0",
|
|
"@types/node": "^17.0.21",
|
|
"typescript": "^4.6.2",
|
|
"vite": "^2.8.6"
|
|
},
|
|
"scripts": {
|
|
"dev": "pnpm unbuild --stub",
|
|
"build": "pnpm unbuild"
|
|
}
|
|
} |