vite-plugin-deadfile
Version:
This plugin helps to find unused source file(dead files) in Vite projects.
56 lines • 1.25 kB
JSON
{
"name": "vite-plugin-deadfile",
"version": "1.4.0",
"license": "MIT",
"author": "stauren@qq.com",
"type": "module",
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"keywords": [
"frontend",
"unused",
"dead",
"source",
"vite"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stauren/vite-plugin-deadfile.git"
},
"bugs": {
"url": "https://github.com/stauren/vite-plugin-deadfile/issues"
},
"homepage": "https://github.com/stauren/vite-plugin-deadfile/tree/main/#readme",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.8.10",
"rollup": "^4.8.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^6.2.1",
"zx": "^8.1.4"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@swc/core": "^1.3.100",
"fs-extra": "^11.2.0"
},
"scripts": {
"tsc": "tsc --emitDeclarationOnly",
"build": "npm run tsc && vite build --ssr"
}
}