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 82dd19c015ecb0f4e0c5b074ead59db928f3ae82 49 lines 1.4 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.1", 20 "@astrojs/netlify": "^6.5.1", 21 "@astrojs/sitemap": "^3.4.1", 22 "@playform/inline": "^0.1.2", 23 "astro": "^5.12.0", 24 "astro-og-canvas": "^0.7.0", 25 "canvaskit-wasm": "^0.40.0", 26 "katex": "^0.16.22", 27 "mdast-util-to-string": "^4.0.0", 28 "reading-time": "^1.5.0", 29 "rehype-katex": "^7.0.1", 30 "remark-directive": "^4.0.0", 31 "remark-math": "^6.0.0", 32 "sharp": "^0.34.3", 33 "unist-util-visit": "^5.0.0" 34 }, 35 "devDependencies": { 36 "@eslint/js": "^9.31.0", 37 "@typescript-eslint/eslint-plugin": "^8.37.0", 38 "@typescript-eslint/parser": "^8.37.0", 39 "eslint": "^9.31.0", 40 "eslint-config-prettier": "^10.1.5", 41 "eslint-plugin-astro": "^1.3.1", 42 "globals": "^16.3.0", 43 "prettier": "^3.6.2", 44 "prettier-plugin-astro": "^0.14.1", 45 "tsx": "^4.20.3", 46 "typescript": "^5.8.3", 47 "typescript-eslint": "^8.37.0" 48 } 49}