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

94 lines
2.3 KiB
JSON
Raw Normal View History

2023-09-22 04:43:19 +02:00
{
"name": "astro-redirect-from",
2024-07-26 15:14:00 +02:00
"version": "1.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>",
2023-09-22 14:25:04 +02:00
"homepage": "https://kremalicious.com/astro-redirect-from",
2023-09-22 04:43:19 +02:00
"license": "MIT",
"type": "module",
2023-09-23 15:58:29 +02:00
"main": "./dist/index.js",
"types": "./dist/@types/index.d.ts",
2023-09-22 14:17:25 +02:00
"scripts": {
2023-09-23 19:01:43 +02:00
"build": "rm -rf ./dist && tsc",
"start": "rm -rf ./dist && tsc --watch",
2023-10-04 02:01:58 +02:00
"test": "npm run validate && npm run test:unit",
2023-09-24 00:27:56 +02:00
"test:unit": "vitest run --coverage --config ./test/vitest.config.ts",
"lint": "biome check --write .",
2023-10-04 02:01:58 +02:00
"typecheck": "tsc --noEmit --pretty",
2023-09-22 14:17:25 +02:00
"changelog": "auto-changelog -p",
"release": "release-it --non-interactive",
2023-10-04 02:01:58 +02:00
"prepublishOnly": "npm run build",
2024-02-26 12:51:52 +01:00
"prepare": "husky",
2023-10-04 02:01:58 +02:00
"validate": "run-p --silent typecheck lint"
2023-09-22 14:17:25 +02:00
},
"files": ["./dist"],
2023-09-22 04:43:19 +02:00
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@kremalicious/config": "^1.0.2",
"@types/node": "^22.2.0",
"@vitest/coverage-v8": "^2.0.5",
2023-09-22 14:17:25 +02:00
"auto-changelog": "^2.4.0",
"husky": "^9.1.4",
2023-10-04 02:01:58 +02:00
"npm-run-all": "^4.1.5",
"release-it": "^17.6.0",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
2023-09-22 04:43:19 +02:00
},
"dependencies": {
2023-09-22 14:25:04 +02:00
"astro": ">= 3",
"globby": "^14.0.2",
2023-09-22 04:43:19 +02:00
"gray-matter": "^4.0.3"
2023-09-22 14:17:25 +02:00
},
2023-09-22 14:28:06 +02:00
"engines": {
"node": ">=18.18.0",
2023-09-22 14:28:06 +02:00
"npm": ">=6.14.0"
},
2023-09-22 14:17:25 +02:00
"release-it": {
"hooks": {
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"keywords": [
"astro",
2023-09-24 14:03:29 +02:00
"withastro",
2023-09-22 14:17:25 +02:00
"astro-integration",
"redirect",
"redirect-from",
2023-09-23 15:58:29 +02:00
"jekyll-migration",
2023-09-24 14:03:29 +02:00
"markdown",
"seo"
2023-09-22 14:17:25 +02:00
],
2023-09-22 14:25:04 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/kremalicious/astro-redirect-from.git"
},
2023-09-22 14:17:25 +02:00
"bugs": {
"url": "https://github.com/kremalicious/astro-redirect-from/issues"
2023-10-25 01:55:44 +02:00
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kremalicious"
},
{
"type": "individual",
"url": "https://kremalicious.com/thanks"
}
2024-02-26 12:51:52 +01:00
],
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
2024-02-26 12:51:52 +01:00
]
}
2023-09-22 04:43:19 +02:00
}