vite-plugin-file-rename
Version:
A Vite plugin to rename files in the output directory.
61 lines (60 loc) • 1.34 kB
JSON
{
"name": "vite-plugin-file-rename",
"description": "A Vite plugin to rename files in the output directory.",
"version": "0.0.6",
"module": "dist/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"deploy": "npm run build && npm publish --access public"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/declarations/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"author": {
"name": "Akshay Raj Gollahalli",
"email": "akshay@gollahalli.com",
"url": "https://www.gollahalli.com"
},
"typings": "dist/declarations/index.d.ts",
"devDependencies": {
"@types/node": "^22.10.7",
"rimraf": "^6.0.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"typescript": "^5.0.0",
"vite": "^5.0.2"
},
"keywords": [
"vite",
"file-rename",
"rename"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akshaybabloo/vite-plugin-file-rename.git"
},
"bugs": {
"url": "https://github.com/akshaybabloo/vite-plugin-file-rename/issues"
},
"homepage": "https://github.com/akshaybabloo/vite-plugin-file-rename/tree/main/#readme",
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5",
"printWidth": 180
}
}