Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 645a43ef921defa93548fe3abb96bdaa38838063 45 lines 1.2 kB view raw
1{ 2 "name": "astro-chiri", 3 "type": "module", 4 "version": "0.5.0", 5 "license": "MIT", 6 "scripts": { 7 "dev": "astro dev", 8 "build": "astro build", 9 "preview": "astro preview", 10 "astro": "astro", 11 "lint": "eslint .", 12 "lint:fix": "eslint . --fix", 13 "format": "prettier --write .", 14 "format:check": "prettier --check .", 15 "new": "tsx scripts/new-post.ts", 16 "update-theme": "tsx scripts/update-theme.ts" 17 }, 18 "dependencies": { 19 "@astrojs/mdx": "^4.3.0", 20 "@astrojs/sitemap": "^3.4.1", 21 "astro": "^5.11.0", 22 "katex": "^0.16.22", 23 "mdast-util-to-string": "^4.0.0", 24 "reading-time": "^1.5.0", 25 "rehype-katex": "^7.0.1", 26 "remark-directive": "^4.0.0", 27 "remark-math": "^6.0.0", 28 "sharp": "^0.34.3", 29 "unist-util-visit": "^5.0.0" 30 }, 31 "devDependencies": { 32 "@eslint/js": "^9.30.1", 33 "@typescript-eslint/eslint-plugin": "^8.35.1", 34 "@typescript-eslint/parser": "^8.36.0", 35 "eslint": "^9.30.1", 36 "eslint-config-prettier": "^10.1.5", 37 "eslint-plugin-astro": "^1.3.1", 38 "globals": "^16.3.0", 39 "prettier": "^3.6.2", 40 "prettier-plugin-astro": "^0.14.1", 41 "tsx": "^4.19.2", 42 "typescript": "^5.8.3", 43 "typescript-eslint": "^8.36.0" 44 } 45}