Commit Graph

38 Commits

Author SHA1 Message Date
renovate[bot]
805d427e47 fix(deps): update all non-major dependencies 2025-12-13 05:50:40 +00:00
renovate[bot]
92ef98329d fix(deps): update all non-major dependencies 2025-12-03 15:16:23 +00:00
renovate[bot]
e5b5a204d4 fix(deps): update all non-major dependencies 2025-11-27 10:16:30 +00:00
renovate[bot]
18ef52acc1 fix(deps): update all non-major dependencies 2025-11-11 13:38:56 +00:00
renovate[bot]
c5a7f52681 fix(deps): update all non-major dependencies 2025-11-03 16:39:17 +09:00
renovate[bot]
8b6bd0cb40 fix(deps): update all non-major dependencies 2025-10-30 09:57:02 +00:00
renovate[bot]
e1a8c6c4e2 fix(deps): update all non-major dependencies 2025-10-20 13:33:05 +00:00
renovate[bot]
1f9f243a75 fix(deps): update all non-major dependencies 2025-10-13 08:58:25 +00:00
renovate[bot]
372c8d7f00 fix(deps): update all non-major dependencies 2025-10-08 07:53:07 +00:00
Kazuki Yamada
9ffffa388e chore(deps): Update dependencies across browser and website packages
Updated multiple dependencies to their latest versions:
- @types/chrome: 0.1.1 → 0.1.14
- @types/node: 24.5.2 → 24.6.0
- sharp: 0.34.3 → 0.34.4
- tsx: 4.20.5 → 4.20.6
- @hono/node-server: 1.19.3 → 1.19.5
- hono: 4.9.8 → 4.9.9
- winston: 3.17.0 → 3.18.1

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-30 22:33:42 +09:00
Kazuki Yamada
947b1c780e fix(website): update Zod v4 compatibility
Updates validation.ts to use Zod v4 API:
- Changed error.errors to error.issues
- Renamed parameter from err to issue for clarity

This resolves build errors after upgrading to Zod v4.
2025-09-21 12:25:09 +09:00
dependabot[bot]
f576c3fd9e chore(deps): bump hono from 4.8.5 to 4.9.7 in /website/server
Bumps [hono](https://github.com/honojs/hono) from 4.8.5 to 4.9.7.
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](https://github.com/honojs/hono/compare/v4.8.5...v4.9.7)

---
updated-dependencies:
- dependency-name: hono
  dependency-version: 4.9.7
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-12 21:47:45 +00:00
Kazuki Yamada
90feedf14f chore(website): Update repomix dependency to v1.4.1
Update website server dependency to use the latest version of repomix
with recent bug fixes and improvements.
2025-08-30 15:39:03 +09:00
Kazuki Yamada
686f401b42 chore(deps): Update @typescript/native-preview to latest version
- Update @typescript/native-preview from 7.0.0-dev.20250708.1 to 7.0.0-dev.20250824.1
- Update package-lock.json files for all subprojects to reflect the latest version
- Ensures compatibility with latest TypeScript native performance improvements

This keeps all packages in sync with the latest tsgo release for consistent type checking performance.
2025-08-24 18:56:38 +09:00
Kazuki Yamada
a564f5818b chore(deps): Replace tsc with tsgo for type checking in subprojects
- Update browser/package.json to use tsgo instead of tsc for lint-tsc script
- Update website/client/package.json to use tsgo instead of tsc for lint-tsc script
- Update website/server/package.json to use tsgo instead of tsc for lint-tsc script
- Add @typescript/native-preview dependency to all subprojects for tsgo compatibility

This aligns with the main package.json which already uses tsgo for faster TypeScript type checking.
2025-08-24 18:53:15 +09:00
Kazuki Yamada
73983d2e27 chore(website): update repomix dependency to v1.4.0
Update repomix package from v1.2.0 to v1.4.0 to support the new
tokenCountTree option and other enhancements required for the
file selection feature.
2025-08-24 14:16:35 +09:00
Kazuki Yamada
06605ef98c chore(website): Update server dependencies
- Update @google-cloud/logging-winston from 6.0.0 to 6.0.1
- Update @hono/node-server from 1.13.8 to 1.16.0
- Update hono from 4.6.20 to 4.8.5
- Update repomix from 0.3.7 to 1.2.0
- Update @types/node from 22.13.0 to 24.0.14
- Update tsx from 4.19.2 to 4.20.3
- Update typescript from 5.7.3 to 5.8.3

These updates include the latest version of repomix and other minor version bumps.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 23:58:18 +09:00
Kazuki Yamada
a267465ced refactor(website/server): Replace adm-zip with fflate for improved performance
Replace adm-zip library with fflate in website server for better performance and smaller bundle size:
- Replace import statements in processZipFile.ts and fileUtils.ts
- Update ZIP extraction logic to use fflate's unzip API with promise wrapper
- Maintain all existing security checks (path traversal, file limits, compression ratio)
- Remove adm-zip and @types/adm-zip dependencies from package.json
- Add fflate dependency with same functionality but better performance

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-09 23:56:10 +09:00
Kazuki Yamada
68448d1d8a fix(website): Add explicit package names to prevent Docker container conflicts
- Add "name": "repomix-website-server" to server/package.json
- Add "name": "repomix-website-client" to client/package.json
- Prevents npm from using /app directory name in package-lock.json during Docker builds
- Ensures consistent package names across development environments

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-07 16:35:03 +09:00
Kazuki Yamada
cae53523a7 refactor(website/server): Replace pako with Node.js zlib for compression
- Replace pako.deflate/inflate with zlib.deflateSync/inflateSync in cache.ts
- Remove pako and @types/pako dependencies from package.json
- Utilize Node.js built-in zlib module for better performance and reduced dependencies

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-07 16:26:59 +09:00
Kazuki Yamada
1f2c3b2c19 ci: Add linting jobs for website client, server, and browser extension 2025-06-05 23:56:05 +09:00
Kazuki Yamada
f472793492 refactor: simplify Web Share API to text-only sharing
- Change from file sharing to text content sharing for better compatibility
- Simplify feature detection to check navigator.share existence only
- Improve button layout with flex-wrap and proper line break on mobile
- Update package.json lint scripts in client and server

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-30 22:57:49 +09:00
Kazuki Yamada
6a1104a7ce fix(server): Update repomix version to 0.3.7 in package.json 2025-05-25 23:32:54 +09:00
Yamada Dev
10820407c7 feat(website): Run repomix in quiet mode on the website 2025-02-22 14:53:19 +09:00
paperboardofficial
b5bf8808c3 added adm-zip package 2025-02-19 00:04:27 +09:00
Yamada Dev
9621699ee0 feat(website): Add support for parsing git URLs 2025-02-08 13:09:30 +09:00
renovate[bot]
27364b361e fix(deps): update all non-major dependencies 2025-02-03 14:23:52 +00:00
renovate[bot]
183a7c3116 fix(deps): update all non-major dependencies 2025-01-27 01:58:22 +00:00
Yamada Dev
763ebb3939 feat(website): update repomix version on website 2025-01-25 16:46:23 +09:00
renovate[bot]
c56be1decd fix(deps): update all non-major dependencies 2025-01-20 13:31:43 +00:00
renovate[bot]
11e6f81fca fix(deps): update all non-major dependencies 2025-01-13 00:36:40 +00:00
Kazuki Yamada
034c54a6b3 refactor: use repomix's built-in URL validation 2025-01-11 02:16:59 +09:00
Kazuki Yamada
6005ceb179 feat(website): add Docker development environment 2025-01-11 02:09:40 +09:00
renovate[bot]
92e9f1167a chore(deps): update dependency rimraf to v6 2025-01-06 05:12:09 +00:00
renovate[bot]
5673fa9f25 chore(deps): update dependency @types/node to v22 2025-01-06 04:48:28 +00:00
renovate[bot]
839f4a7d57 fix(deps): update all non-major dependencies 2025-01-06 00:52:32 +00:00
Kazuki Yamada
cc72dcc925 feat(website): Implement compressed cache with pako 2025-01-04 21:36:19 +09:00
Kazuki Yamada
e9e0443d6b feat(website): Add online demo functionality 2025-01-04 12:40:08 +09:00