1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-10-22 03:12:43 +02:00
astro-redirect-from/package.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2023-09-22 04:43:19 +02:00
{
"name": "astro-redirect-from",
"version": "0.1.0",
2023-09-22 14:17:25 +02:00
"description": "🎯 Set redirect urls in your frontmatter within your Astro site's Markdown files. Mimics the behavior of jekyll-redirect-from.",
2023-09-22 04:43:19 +02:00
"author": "Matthias Kretschmann <m@kretschmann.io>",
"license": "MIT",
2023-09-22 14:17:25 +02:00
"main": "dist/index.js",
2023-09-22 04:43:19 +02:00
"type": "module",
2023-09-22 14:17:25 +02:00
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"test": "npm run lint && npm run build",
"lint": "eslint src/**/*.js",
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",
"changelog": "auto-changelog -p",
"release": "release-it --non-interactive",
"prepublishOnly": "npm run build"
},
2023-09-22 04:43:19 +02:00
"devDependencies": {
"@types/node": "^20.6.3",
2023-09-22 14:17:25 +02:00
"auto-changelog": "^2.4.0",
2023-09-22 04:43:19 +02:00
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
2023-09-22 14:17:25 +02:00
"release-it": "^16.1.5",
"typescript": "^5.2.2",
"vite": "^4.4.9"
2023-09-22 04:43:19 +02:00
},
"dependencies": {
"astro": "^3.1.2",
"fast-glob": "^3.3.1",
"gray-matter": "^4.0.3"
2023-09-22 14:17:25 +02:00
},
"peerDependencies": {
"astro": ">= 3"
},
"release-it": {
"hooks": {
"before:init": "npm test",
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kremalicious/astro-redirect-from.git"
},
"keywords": [
"astro",
"astro-integration",
"redirect",
"redirect-from",
"jekyll-migration"
],
"bugs": {
"url": "https://github.com/kremalicious/astro-redirect-from/issues"
},
"homepage": "https://kremalicious.com/astro-redirect-from"
2023-09-22 04:43:19 +02:00
}