astro-ghostcms/packages/starlight-ghostcms/package.json

73 lines
1.9 KiB
JSON
Raw Normal View History

2024-02-19 02:52:08 +00:00
{
"name": "@matthiesenxyz/starlight-ghostcms",
"description": "Starlight GhostCMS plugin to allow easier importing of GhostCMS Content into your starlight website",
2024-02-20 12:41:03 +00:00
"version": "0.0.2",
2024-02-19 02:52:08 +00:00
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"author": {
"email": "adam@matthiesen.xyz",
"name": "Adam Matthiesen - MatthiesenXYZ",
"url": "https://matthiesen.xyz"
},
"keywords": [
"starlight",
"starlight-plugin",
2024-02-20 07:01:54 +00:00
"astro",
"plugin",
2024-02-19 02:52:08 +00:00
"blog",
"content",
"ghost",
"ghostcms"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MatthiesenXYZ/astro-ghostcms.git"
},
"bugs": {
"url": "https://github.com/MatthiesenXYZ/astro-ghostcms/issues",
"email": "issues@astro-ghostcms.xyz"
},
"main": "index.ts",
"types": "index.ts",
2024-02-19 02:52:08 +00:00
"files": [
"src",
"index.ts",
"tsconfig.json",
"types.d.ts"
],
"exports": {
".": "./index.ts",
"./overrides/MarkdownContent.astro": "./src/overrides/MarkdownContent.astro",
2024-02-20 07:57:58 +00:00
"./overrides/Sidebar.astro": "./src/overrides/Sidebar.astro",
"./overrides/SiteTitle.astro": "./src/overrides/SiteTitle.astro",
"./routes/index.astro": "./src/routes/index.astro",
2024-02-20 11:01:51 +00:00
"./routes/[slug].astro": "./src/routes/[slug].astro",
2024-02-20 07:57:58 +00:00
"./schema": "./src/schemas/config.ts"
2024-02-19 02:52:08 +00:00
},
"scripts": {
2024-02-20 05:58:36 +00:00
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage.enabled --coverage.reporter='text-summary'"
2024-02-19 02:52:08 +00:00
},
"devDependencies": {
"@astrojs/starlight": "0.19.0",
"@ts-ghost/core-api": "5.1.2",
2024-02-20 05:58:36 +00:00
"@ts-ghost/tsconfig": "workspace:*",
2024-02-20 12:36:40 +00:00
"astro": "4.4.0",
"vite": "^5.1.2",
2024-02-20 05:58:36 +00:00
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.2.2",
"vitest-fetch-mock": "^0.2.2"
2024-02-19 02:52:08 +00:00
},
"peerdependencies": {
"@astrojs/starlight": ">=0.19.0",
"astro": ">=4.3.7"
}
}