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 d53cf66a7c485bc65a203dfd645442c65b48b58e 50 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 "prebuild": "pnpm exec tsx scripts/toggle-proxy.ts", 9 "build": "pnpm run prebuild && astro build", 10 "preview": "astro preview", 11 "astro": "astro", 12 "lint": "eslint .", 13 "lint:fix": "eslint . --fix", 14 "format": "prettier --write .", 15 "format:check": "prettier --check .", 16 "new": "tsx scripts/new-post.ts", 17 "update-theme": "tsx scripts/update-theme.ts" 18 }, 19 "dependencies": { 20 "@astrojs/mdx": "^4.3.1", 21 "@astrojs/netlify": "^6.5.1", 22 "@astrojs/sitemap": "^3.4.1", 23 "@playform/inline": "^0.1.2", 24 "astro": "^5.12.0", 25 "astro-og-canvas": "^0.7.0", 26 "canvaskit-wasm": "^0.40.0", 27 "katex": "^0.16.22", 28 "mdast-util-to-string": "^4.0.0", 29 "reading-time": "^1.5.0", 30 "rehype-katex": "^7.0.1", 31 "remark-directive": "^4.0.0", 32 "remark-math": "^6.0.0", 33 "sharp": "^0.34.3", 34 "unist-util-visit": "^5.0.0" 35 }, 36 "devDependencies": { 37 "@eslint/js": "^9.31.0", 38 "@typescript-eslint/eslint-plugin": "^8.37.0", 39 "@typescript-eslint/parser": "^8.37.0", 40 "eslint": "^9.31.0", 41 "eslint-config-prettier": "^10.1.8", 42 "eslint-plugin-astro": "^1.3.1", 43 "globals": "^16.3.0", 44 "prettier": "^3.6.2", 45 "prettier-plugin-astro": "^0.14.1", 46 "tsx": "^4.20.3", 47 "typescript": "^5.8.3", 48 "typescript-eslint": "^8.37.0" 49 } 50}