Files
pr-preview/backend/node_modules/rjweb-server/package.json
T
space a71f801c3f feat: initial scaffold - backend, frontend, Prisma schema, Docker
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings
- Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers
- Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page
- Docker Compose and Dockerfile for self-hosted deployment
- Uses bcryptjs for Node 24 compatibility

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-25 00:18:08 +02:00

67 lines
2.4 KiB
JSON

{
"name": "rjweb-server",
"version": "9.9.0",
"description": "Easy and Robust Way to create a Web Server with many easy-to-use Features in Node.js",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/0x7d8/NPM_WEB-SERVER.git"
},
"bin": {
"rjweb": "lib/cjs/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"webserver",
"web-server",
"lightweight",
"server",
"restful",
"rest",
"node",
"http",
"easy",
"api",
"web",
"backend"
],
"author": "0x7d8 (0x4096 / Robert Jansen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x7d8/NPM_WEB-SERVER/issues"
},
"homepage": "https://github.com/0x7d8/NPM_WEB-SERVER#readme",
"devDependencies": {
"@types/content-disposition": "^0.5.9",
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.35",
"rjweb-server": "link:",
"ts-patch": "^4.0.1",
"tsc-progress": "^1.0.4",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.4.1",
"typescript": "^6.0.3",
"typescript-transform-paths": "^4.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"@rjweb/utils": "^1.12.29",
"content-disposition": "^0.5.4",
"inquirer": "^13.4.3",
"openapi3-ts": "^4.5.0",
"yargs": "^17.7.2",
"zod": "^4.4.3"
},
"scripts": {
"build:esm": "tspc --outDir lib/esm --module ESNext --ignoreDeprecations 6.0 && mv lib/esm/src/* lib/esm && rm -rf lib/esm/src",
"build:cjs": "tspc --outDir lib/cjs --module CommonJS --ignoreDeprecations 6.0 && mv lib/cjs/src/* lib/cjs && rm -rf lib/cjs/src",
"build:typings": "tspc --outDir lib/typings --emitDeclarationOnly --declaration --ignoreDeprecations 6.0 && mv lib/typings/src/* lib/typings && rm -rf lib/typings/src",
"build:full": "rm -rf lib && pnpm build:esm & pnpm build:cjs & pnpm build:typings && wait && sed -i -e 's|\"package.json\"|\"./package.json\"|' lib/**/*.js && echo \"Size $(du -sh lib)\"",
"docs": "rm -rf docs && typedoc --githubPages false --includeVersion --out docs src/index.ts --plugin typedoc-material-theme --themeColor '#cb9820' && find docs -type f -name '*.html' -exec sed -i -e 's|<meta charSet=\"utf-8\"/>|<meta charSet=\"utf-8\"/><link rel=\"icon\" type=\"image/svg+xml\" href=\"https://cdn.rjns.dev/rjweb/icon.svg\">|' {} + && chmod -R a+rw docs",
"cli": "node lib/cjs/cli.js"
}
}