astro-htaccess/package.json
2024-08-30 16:50:06 -03:00

44 lines
956 B
JSON

{
"name": "astro-htaccess",
"version": "0.0.0",
"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"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@types/node": "^22.5.1",
"astro": "^4.15.1",
"typescript": "^5.5.4"
}
}