astro-htaccess/package.json
2024-12-03 22:48:05 -03:00

44 lines
961 B
JSON

{
"name": "astro-htaccess",
"version": "0.2.3",
"description": "Astro integration to generate an Apache .htaccess file",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"check": "astro check",
"prettier": "prettier --write .",
"prepack": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/BadMannersXYZ/astro-htaccess.git"
},
"homepage": "https://github.com/BadMannersXYZ/astro-htaccess",
"keywords": [
"astro",
"astro-integration",
"with-astro",
"apache",
"apache-config",
"config",
"htaccess"
],
"author": "Bad Manners <npm@badmanners.xyz>",
"license": "MIT",
"peerDependencies": {
"astro": ">= 4.0.0 < 6"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@types/node": "^22.5.1",
"astro": "^5.0.1",
"typescript": "^5.5.4"
}
}