Files
vite-sitemap-plugin/package.json
T
2026-05-12 19:44:00 +02:00

46 lines
956 B
JSON

{
"name": "@unom/vite-sitemap-plugin",
"version": "0.1.0",
"description": "Vite plugin that emits sitemap.xml and robots.txt at build time, with optional i18n hreflang alternates.",
"type": "module",
"author": {
"name": "enricobuehler",
"url": "https://enrico.buehler.earth",
"email": "enrico@buehler.earth"
},
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"vite",
"vite-plugin",
"sitemap",
"robots",
"hreflang",
"i18n",
"seo"
],
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"tsdown": "^0.22.0",
"typescript": "^5.6.0",
"vite": "^5.0.0"
},
"peerDependencies": {
"vite": ">=4"
}
}