├── .eslintrc.json ├── .github └── workflows │ └── release-please.yml ├── .gitignore ├── .next ├── app-build-manifest.json ├── build-manifest.json ├── package.json ├── react-loadable-manifest.json ├── server │ ├── app-paths-manifest.json │ ├── app │ │ ├── page.js │ │ └── page_client-reference-manifest.js │ ├── interception-route-rewrite-manifest.js │ ├── middleware-build-manifest.js │ ├── middleware-manifest.json │ ├── middleware-react-loadable-manifest.js │ ├── next-font-manifest.js │ ├── next-font-manifest.json │ ├── pages-manifest.json │ ├── server-reference-manifest.js │ ├── server-reference-manifest.json │ └── webpack-runtime.js ├── trace └── types │ ├── app │ ├── layout.ts │ └── page.ts │ └── package.json ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jsonl-viewer └── .next │ ├── cache │ └── webpack │ │ └── client-development │ │ └── 7.pack.gz_ │ └── trace ├── next.config.js ├── package.json ├── src ├── app │ ├── globals.css │ ├── layout.tsx │ ├── page.module.css │ └── page.tsx ├── components │ ├── FileUpload.module.css │ ├── FileUpload.tsx │ ├── JsonHighlight.tsx │ ├── JsonlViewer.module.css │ ├── JsonlViewer.tsx │ ├── StructuredMessage.module.css │ └── StructuredMessage.tsx ├── types │ └── jsonl.ts └── utils │ ├── extractMessage.ts │ ├── formatJson.tsx │ └── jsonlParser.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.gitignore -------------------------------------------------------------------------------- /.next/app-build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/app-build-manifest.json -------------------------------------------------------------------------------- /.next/build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/build-manifest.json -------------------------------------------------------------------------------- /.next/package.json: -------------------------------------------------------------------------------- 1 | {"type": "commonjs"} -------------------------------------------------------------------------------- /.next/react-loadable-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/react-loadable-manifest.json -------------------------------------------------------------------------------- /.next/server/app-paths-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/app-paths-manifest.json -------------------------------------------------------------------------------- /.next/server/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/app/page.js -------------------------------------------------------------------------------- /.next/server/app/page_client-reference-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/app/page_client-reference-manifest.js -------------------------------------------------------------------------------- /.next/server/interception-route-rewrite-manifest.js: -------------------------------------------------------------------------------- 1 | self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]" -------------------------------------------------------------------------------- /.next/server/middleware-build-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/middleware-build-manifest.js -------------------------------------------------------------------------------- /.next/server/middleware-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/middleware-manifest.json -------------------------------------------------------------------------------- /.next/server/middleware-react-loadable-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/middleware-react-loadable-manifest.js -------------------------------------------------------------------------------- /.next/server/next-font-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/next-font-manifest.js -------------------------------------------------------------------------------- /.next/server/next-font-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/next-font-manifest.json -------------------------------------------------------------------------------- /.next/server/pages-manifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.next/server/server-reference-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/server-reference-manifest.js -------------------------------------------------------------------------------- /.next/server/server-reference-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/server-reference-manifest.json -------------------------------------------------------------------------------- /.next/server/webpack-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/server/webpack-runtime.js -------------------------------------------------------------------------------- /.next/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/trace -------------------------------------------------------------------------------- /.next/types/app/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/types/app/layout.ts -------------------------------------------------------------------------------- /.next/types/app/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.next/types/app/page.ts -------------------------------------------------------------------------------- /.next/types/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/README.md -------------------------------------------------------------------------------- /jsonl-viewer/.next/cache/webpack/client-development/7.pack.gz_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/jsonl-viewer/.next/cache/webpack/client-development/7.pack.gz_ -------------------------------------------------------------------------------- /jsonl-viewer/.next/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/jsonl-viewer/.next/trace -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/package.json -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/app/page.module.css -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/FileUpload.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/FileUpload.module.css -------------------------------------------------------------------------------- /src/components/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/FileUpload.tsx -------------------------------------------------------------------------------- /src/components/JsonHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/JsonHighlight.tsx -------------------------------------------------------------------------------- /src/components/JsonlViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/JsonlViewer.module.css -------------------------------------------------------------------------------- /src/components/JsonlViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/JsonlViewer.tsx -------------------------------------------------------------------------------- /src/components/StructuredMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/StructuredMessage.module.css -------------------------------------------------------------------------------- /src/components/StructuredMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/components/StructuredMessage.tsx -------------------------------------------------------------------------------- /src/types/jsonl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/types/jsonl.ts -------------------------------------------------------------------------------- /src/utils/extractMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/utils/extractMessage.ts -------------------------------------------------------------------------------- /src/utils/formatJson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/utils/formatJson.tsx -------------------------------------------------------------------------------- /src/utils/jsonlParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/src/utils/jsonlParser.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiragram/ccraw/HEAD/tsconfig.json --------------------------------------------------------------------------------