Fork of Chiri for Astro for my blog
at main 60 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 "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.13", 21 "@astrojs/netlify": "^6.6.4", 22 "@astrojs/rss": "^4.0.15", 23 "@astrojs/sitemap": "^3.7.0", 24 "@playform/inline": "^0.1.2", 25 "astro": "^5.17.3", 26 "astro-og-canvas": "^0.10.1", 27 "canvaskit-wasm": "^0.40.0", 28 "feed": "^5.2.0", 29 "katex": "^0.16.32", 30 "markdown-it": "^14.1.1", 31 "mdast-util-to-string": "^4.0.0", 32 "node-html-parser": "^7.0.2", 33 "reading-time": "^1.5.0", 34 "rehype-external-links": "^3.0.0", 35 "rehype-katex": "^7.0.1", 36 "remark-directive": "^4.0.0", 37 "remark-flexible-markers": "^1.3.3", 38 "remark-math": "^6.0.0", 39 "sanitize-html": "^2.17.1", 40 "sharp": "^0.34.5", 41 "unist-util-visit": "^5.1.0" 42 }, 43 "devDependencies": { 44 "sequoia-cli": "^0.5.0", 45 "@eslint/js": "^9.39.3", 46 "@types/markdown-it": "^14.1.2", 47 "@types/sanitize-html": "^2.16.0", 48 "@typescript-eslint/eslint-plugin": "^8.56.0", 49 "@typescript-eslint/parser": "^8.56.0", 50 "eslint": "^9.39.2", 51 "eslint-config-prettier": "^10.1.8", 52 "eslint-plugin-astro": "^1.6.0", 53 "globals": "^17.3.0", 54 "prettier": "^3.8.1", 55 "prettier-plugin-astro": "^0.14.1", 56 "tsx": "^4.21.0", 57 "typescript": "^5.9.3", 58 "typescript-eslint": "^8.56.0" 59 } 60}