astro-htaccess/package.json

45 lines
961 B
JSON
Raw Permalink Normal View History

2024-08-30 19:50:06 +00:00
{
"name": "astro-htaccess",
2024-12-04 01:48:05 +00:00
"version": "0.2.3",
2024-08-30 19:50:06 +00:00
"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": {
2024-12-03 21:35:16 +00:00
"astro": ">= 4.0.0 < 6"
2024-08-30 19:50:06 +00:00
},
"devDependencies": {
2024-12-03 21:35:16 +00:00
"@astrojs/check": "^0.9.4",
2024-08-30 19:50:06 +00:00
"@types/node": "^22.5.1",
2024-12-03 21:35:16 +00:00
"astro": "^5.0.1",
2024-08-30 19:50:06 +00:00
"typescript": "^5.5.4"
}
}