astro-ghostcms/package.json

80 lines
2.4 KiB
JSON
Raw Normal View History

2024-01-13 07:20:44 +00:00
{
2024-01-16 06:58:43 +00:00
"name": "@matthiesenxyz/astro-ghostcms",
2024-01-13 07:20:44 +00:00
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content",
"version": "2.1.8",
2024-01-16 06:58:43 +00:00
"author": "MatthiesenXYZ (https://matthiesen.xyz)",
2024-01-13 07:20:44 +00:00
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
2024-01-16 06:58:43 +00:00
"url": "git+https://github.com/MatthiesenXYZ/astro-ghostcms.git"
2024-01-13 07:20:44 +00:00
},
"bugs": {
2024-01-20 12:52:55 +00:00
"url": "https://github.com/MatthiesenXYZ/astro-ghostcms/issues",
"email": "issues@astro-ghostcms.xyz"
2024-01-13 07:20:44 +00:00
},
2024-01-18 15:01:15 +00:00
"homepage": "https://astro-ghostcms.xyz/",
2024-01-13 07:20:44 +00:00
"exports": {
2024-01-17 10:55:43 +00:00
".": "./index.ts",
"./api": "./src/api/index.ts",
"./index.astro": "./src/theme/routes/index.astro",
"./404.astro": "./src/theme/routes/404.astro",
"./[slug].astro": "./src/theme/routes/[slug].astro",
"./tags.astro": "./src/theme/routes/tags.astro",
"./authors.astro": "./src/theme/routes/authors.astro",
"./tag/[slug].astro": "./src/theme/routes/tag/[slug].astro",
"./author/[slug].astro": "./src/theme/routes/author/[slug].astro",
"./archives/[...page].astro": "./src/theme/routes/archives/[...page].astro",
"./rss.xml.js": "./src/theme/routes/rss.xml.js"
2024-01-13 07:20:44 +00:00
},
"main": "index.ts",
2024-01-20 12:52:55 +00:00
"types": "src/api/tryghost-content-api.d.ts",
2024-01-13 07:20:44 +00:00
"files": [
"src",
"index.ts"
2024-01-13 07:20:44 +00:00
],
"keywords": [
"astro-component",
2024-01-17 10:29:47 +00:00
"astro-integration",
2024-01-13 07:20:44 +00:00
"withastro",
2024-01-17 10:29:47 +00:00
"astro",
"blog",
"content",
"integration",
2024-01-13 07:20:44 +00:00
"ghost",
2024-01-17 10:29:47 +00:00
"ghostcms",
"ghostcms-theme",
"ghost-theme",
"astro-theme"
2024-01-13 07:20:44 +00:00
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"typecheck": "astro check && tsc --noEmit",
"preview": "astro preview",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint ."
2024-01-13 07:20:44 +00:00
},
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/rss": "^4.0.2",
"@astrojs/sitemap": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"astro": "^4.2.1",
"astro-font": "^0.0.72",
2024-01-20 12:52:55 +00:00
"astro-robots-txt": "^1.0.0",
"axios": "^1.6.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.29.1",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.12.3",
"sass": "^1.70.0",
"tiny-invariant": "^1.3.1",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"zod-validation-error": "^3.0.0"
}
2024-01-13 07:20:44 +00:00
}