├── .github ├── FUNDING.yaml ├── renovate.json └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .mcp.json ├── .npmrc ├── CLAUDE.md ├── LICENSE ├── README.md ├── app ├── activity-heatmap.tsx ├── conversation-list.tsx ├── favicon.ico ├── form.tsx ├── globals.css ├── layout.tsx └── page.tsx ├── bun.lock ├── components.json ├── components └── ui │ ├── button.tsx │ ├── card.tsx │ └── dropzone.tsx ├── docs └── screenshot.jpeg ├── eslint.config.mjs ├── lib ├── atom.ts ├── schema.ts ├── utils.ts ├── validation.test.ts └── validation.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── tsconfig.json └── vitest.config.mts /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: ryoppippi 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | nlx lint-staged 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | nr lint 2 | -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/.mcp.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @jsr:registry=https://npm.jsr.io 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/README.md -------------------------------------------------------------------------------- /app/activity-heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/activity-heatmap.tsx -------------------------------------------------------------------------------- /app/conversation-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/conversation-list.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/form.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/app/page.tsx -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/components/ui/dropzone.tsx -------------------------------------------------------------------------------- /docs/screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/docs/screenshot.jpeg -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/lib/atom.ts -------------------------------------------------------------------------------- /lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/lib/schema.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/lib/validation.test.ts -------------------------------------------------------------------------------- /lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/lib/validation.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/chatgpt-heatmap/HEAD/vitest.config.mts --------------------------------------------------------------------------------