astro-ghostcms/package.json

78 lines
2.2 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",
2024-01-19 12:58:37 +00:00
"version": "2.0.9",
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-16 06:58:43 +00:00
"url": "https://github.com/MatthiesenXYZ/astro-ghostcms/issues"
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/routes/index.astro",
"./[slug].astro": "./src/routes/[slug].astro",
"./tags.astro": "./src/routes/tags.astro",
"./authors.astro": "./src/routes/authors.astro",
"./tag/[slug].astro": "./src/routes/tag/[slug].astro",
"./author/[slug].astro": "./src/routes/author/[slug].astro",
"./archives/[...page].astro": "./src/routes/archives/[...page].astro",
"./DefaultLayout": "./src/layouts/default.astro"
2024-01-13 07:20:44 +00:00
},
"main": "index.ts",
"types": "src/api/ghosttypes.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",
"typescript": "^5.3.3",
"axios": "^1.0.0",
"astro-font": "^0.0.72",
"@astrojs/renderer-svelte": "0.5.2",
"@astrojs/rss": "^4.0.2",
"@astrojs/sitemap": "^3.0.4",
"@snowpack/plugin-dotenv": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"astro": "^4.1.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.66.1",
"tiny-invariant": "^1.3.1",
"vite": "^4.4.9"
}
2024-01-13 07:20:44 +00:00
}