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 bcd31bfa38a6de9fbb609d7d564d453959a9a365 61 lines 1.8 kB view raw
1{ 2 "name": "astro-chiri", 3 "type": "module", 4 "version": "1.0.0", 5 "license": "MIT", 6 "scripts": { 7 "dev": "astro dev", 8 "prebuild": "pnpm exec tsx scripts/toggle-proxy.ts", 9 "build": "pnpm run prebuild && astro build", 10 "postbuild": "sequoia inject", 11 "preview": "astro preview", 12 "astro": "astro", 13 "lint": "eslint .", 14 "lint:fix": "eslint . --fix", 15 "format": "prettier --write .", 16 "format:check": "prettier --check .", 17 "new": "tsx scripts/new-post.ts", 18 "update-theme": "tsx scripts/update-theme.ts" 19 }, 20 "dependencies": { 21 "@astrojs/mdx": "^4.3.13", 22 "@astrojs/netlify": "^6.6.4", 23 "@astrojs/rss": "^4.0.15", 24 "@astrojs/sitemap": "^3.7.0", 25 "@playform/inline": "^0.1.2", 26 "astro": "^5.17.3", 27 "astro-og-canvas": "^0.10.1", 28 "canvaskit-wasm": "^0.40.0", 29 "feed": "^5.2.0", 30 "katex": "^0.16.32", 31 "markdown-it": "^14.1.1", 32 "mdast-util-to-string": "^4.0.0", 33 "node-html-parser": "^7.0.2", 34 "reading-time": "^1.5.0", 35 "rehype-external-links": "^3.0.0", 36 "rehype-katex": "^7.0.1", 37 "remark-directive": "^4.0.0", 38 "remark-flexible-markers": "^1.3.3", 39 "remark-math": "^6.0.0", 40 "sanitize-html": "^2.17.1", 41 "sharp": "^0.34.5", 42 "unist-util-visit": "^5.1.0" 43 }, 44 "devDependencies": { 45 "sequoia-cli": "^0.5.0", 46 "@eslint/js": "^9.39.3", 47 "@types/markdown-it": "^14.1.2", 48 "@types/sanitize-html": "^2.16.0", 49 "@typescript-eslint/eslint-plugin": "^8.56.0", 50 "@typescript-eslint/parser": "^8.56.0", 51 "eslint": "^9.39.2", 52 "eslint-config-prettier": "^10.1.8", 53 "eslint-plugin-astro": "^1.6.0", 54 "globals": "^17.3.0", 55 "prettier": "^3.8.1", 56 "prettier-plugin-astro": "^0.14.1", 57 "tsx": "^4.21.0", 58 "typescript": "^5.9.3", 59 "typescript-eslint": "^8.56.0" 60 } 61}