mirror of
https://github.com/yamadashy/repomix.git
synced 2026-05-30 11:18:53 +02:00
4492598a84
Bumps the npm_and_yarn group with 2 updates in the / directory: [hono](https://github.com/honojs/hono) and [ip-address](https://github.com/beaugunderson/ip-address). Bumps the npm_and_yarn group with 1 update in the /website/client directory: [serialize-javascript](https://github.com/yahoo/serialize-javascript). Bumps the npm_and_yarn group with 2 updates in the /website/server directory: [hono](https://github.com/honojs/hono) and [ip-address](https://github.com/beaugunderson/ip-address). Updates `hono` from 4.12.14 to 4.12.18 - [Release notes](https://github.com/honojs/hono/releases) - [Commits](https://github.com/honojs/hono/compare/v4.12.14...v4.12.18) Updates `ip-address` from 10.1.0 to 10.2.0 - [Commits](https://github.com/beaugunderson/ip-address/commits) Updates `hono` from 4.12.14 to 4.12.18 - [Release notes](https://github.com/honojs/hono/releases) - [Commits](https://github.com/honojs/hono/compare/v4.12.14...v4.12.18) Updates `ip-address` from 10.1.0 to 10.2.0 - [Commits](https://github.com/beaugunderson/ip-address/commits) Updates `serialize-javascript` from 6.0.2 to 7.0.5 - [Release notes](https://github.com/yahoo/serialize-javascript/releases) - [Commits](https://github.com/yahoo/serialize-javascript/compare/v6.0.2...v7.0.5) Updates `hono` from 4.12.16 to 4.12.18 - [Release notes](https://github.com/honojs/hono/releases) - [Commits](https://github.com/honojs/hono/compare/v4.12.14...v4.12.18) Updates `ip-address` from 10.1.0 to 10.2.0 - [Commits](https://github.com/beaugunderson/ip-address/commits) Updates `hono` from 4.12.16 to 4.12.18 - [Release notes](https://github.com/honojs/hono/releases) - [Commits](https://github.com/honojs/hono/compare/v4.12.14...v4.12.18) Updates `ip-address` from 10.1.0 to 10.2.0 - [Commits](https://github.com/beaugunderson/ip-address/commits) --- updated-dependencies: - dependency-name: hono dependency-version: 4.12.18 dependency-type: indirect - dependency-name: hono dependency-version: 4.12.18 dependency-type: direct:production - dependency-name: ip-address dependency-version: 10.2.0 dependency-type: indirect - dependency-name: ip-address dependency-version: 10.2.0 dependency-type: indirect - dependency-name: serialize-javascript dependency-version: 7.0.5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "repomix-website-server",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "PORT=8080 tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"bundle": "node scripts/bundle.mjs",
|
|
"lint": "node --run lint-tsc",
|
|
"lint-tsc": "tsgo --noEmit -p tsconfig.test.json",
|
|
"test": "vitest",
|
|
"start": "node dist/index.js",
|
|
"start:bundle": "node dist-bundled/server.mjs",
|
|
"clean": "rimraf dist dist-bundled",
|
|
"cloud-deploy": "gcloud builds submit --config=cloudbuild.yaml ."
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.19.13",
|
|
"@upstash/ratelimit": "^2.0.8",
|
|
"@upstash/redis": "^1.37.0",
|
|
"fflate": "^0.8.2",
|
|
"hono": "^4.12.18",
|
|
"isbot": "^5.1.37",
|
|
"repomix": "github:yamadashy/repomix#main",
|
|
"valibot": "^1.3.1",
|
|
"winston": "^3.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@swc/core": "^1.15.24",
|
|
"@types/node": "^24.12.2",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260410.1",
|
|
"rimraf": "^6.1.3",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.1.4",
|
|
"rolldown": "^1.0.0-rc.15",
|
|
"rollup-plugin-swc3": "^0.12.1"
|
|
}
|
|
}
|