mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "starlight-blog",
|
|
"version": "0.7.0",
|
|
"license": "MIT",
|
|
"description": "Starlight plugin to add a blog to your documentation.",
|
|
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./overrides/MarkdownContent.astro": "./overrides/MarkdownContent.astro",
|
|
"./overrides/Sidebar.astro": "./overrides/Sidebar.astro",
|
|
"./overrides/ThemeSelect.astro": "./overrides/ThemeSelect.astro",
|
|
"./routes/Blog.astro": "./routes/Blog.astro",
|
|
"./routes/Tags.astro": "./routes/Tags.astro",
|
|
"./schema": "./schema.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"astro-remote": "0.3.2",
|
|
"github-slugger": "2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/starlight": "0.22.1",
|
|
"@playwright/test": "1.36.1",
|
|
"astro": "4.2.7",
|
|
"vitest": "1.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@astrojs/starlight": ">=0.22.1",
|
|
"astro": ">=4.2.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.14.1"
|
|
},
|
|
"packageManager": "pnpm@8.6.9",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"sideEffects": false,
|
|
"keywords": [
|
|
"starlight",
|
|
"plugin",
|
|
"blog",
|
|
"documentation",
|
|
"astro"
|
|
],
|
|
"homepage": "https://github.com/HiDeoo/starlight-blog",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/HiDeoo/starlight-blog.git"
|
|
},
|
|
"bugs": "https://github.com/HiDeoo/starlight-blog/issues",
|
|
"scripts": {
|
|
"test": "pnpm test:unit && pnpm test:e2e",
|
|
"test:unit": "vitest",
|
|
"test:e2e": "playwright install --with-deps chromium && playwright test",
|
|
"lint": "prettier -c --cache . && eslint . --cache --max-warnings=0"
|
|
}
|
|
} |