Files
repomix-mirror/website/server/package.json
2026-03-28 04:59:30 +00:00

37 lines
1.0 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": "npm run lint-tsc",
"lint-tsc": "tsgo --noEmit",
"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.11",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"fflate": "^0.8.2",
"hono": "^4.12.8",
"repomix": "github:yamadashy/repomix#main",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@swc/core": "^1.15.18",
"@types/node": "^24.12.0",
"@typescript/native-preview": "^7.0.0-dev.20260320.1",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"rolldown": "^1.0.0-rc.10",
"rollup-plugin-swc3": "^0.12.1"
}
}