a71f801c3f
- 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>
82 lines
1.6 KiB
JSON
82 lines
1.6 KiB
JSON
{
|
|
"name": "react-router-dom",
|
|
"version": "7.18.1",
|
|
"description": "Declarative routing for React web applications",
|
|
"keywords": [
|
|
"react",
|
|
"router",
|
|
"route",
|
|
"routing",
|
|
"history",
|
|
"link"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/remix-run/react-router",
|
|
"directory": "packages/react-router-dom"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Remix Software <hello@remix.run>",
|
|
"sideEffects": false,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"node": {
|
|
"types": "./dist/index.d.ts",
|
|
"module-sync": "./dist/index.mjs",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"default": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"wireit": {
|
|
"build": {
|
|
"command": "tsup",
|
|
"files": [
|
|
"../../pnpm-workspace.yaml",
|
|
"*.ts",
|
|
"tsconfig.json",
|
|
"package.json"
|
|
],
|
|
"output": [
|
|
"dist/**"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"react-router": "7.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"tsup": "^8.3.0",
|
|
"typescript": "^5.4.5",
|
|
"wireit": "0.14.9"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18",
|
|
"react-dom": ">=18"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"LICENSE.md",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "wireit",
|
|
"typecheck": "tsc"
|
|
}
|
|
} |