Skip to content
Merged
8 changes: 8 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ Always run `npm run lint` after making changes. No typecheck script is configure

Do not commit changes unless explicitly asked to.

## Version bump

When asked to bump the project version, update all three files:

- `package.json` — `"version"` field
- `package-lock.json` — `"version"` field (both top-level and nested `packages[""]`)
- `README.md` — version badge at the top

All UI text is in English.

## Search API
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

High-performance dashboard for exploring GitHub users, repositories, and search results.

**v0.3.0**
**v0.3.2**

## Features

Expand All @@ -26,14 +26,14 @@ High-performance dashboard for exploring GitHub users, repositories, and search
- **State:** Zustand v5 with local persistence
- **Animations:** Framer Motion v12
- **Charts:** Recharts v3 (language donut chart)
- **Markdown:** react-markdown + remark-gfm
- **Markdown:** react-markdown + remark-gfm + rehype-raw
- **PWA:** Web App Manifest + service worker via Next.js PWA plugin
- **Icons:** Lucide React

## Prerequisites

- Node.js 20+
- (Optional) `NEXT_PUBLIC_GITHUB_TOKEN` in `.env.local` to increase GitHub API rate limit
- Node.js >=22.0.0
- (Optional) `GITHUB_TOKEN` in `.env.local` to increase GitHub API rate limit

## Commands

Expand Down
4 changes: 4 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ const nextConfig = {
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
{
protocol: 'https',
hostname: 'raw.githubusercontent.com',
},
],
},
};
Expand Down
204 changes: 201 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-explorer-dashboard",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"engines": {
"node": ">=22.0.0",
Expand All @@ -23,6 +23,8 @@
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.7.0",
"tailwind-merge": "^3.6.0",
Expand Down
Loading