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>
50 lines
997 B
JSON
50 lines
997 B
JSON
{
|
|
"name": "empathic",
|
|
"version": "2.0.0",
|
|
"repository": "lukeed/empathic",
|
|
"description": "A set of small and fast Node.js utilities to understand your pathing needs.",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Luke Edwards",
|
|
"email": "luke.edwards05@gmail.com",
|
|
"url": "https://lukeed.com"
|
|
},
|
|
"exports": {
|
|
"./access": {
|
|
"types": "./access.d.ts",
|
|
"import": "./access.mjs",
|
|
"require": "./access.js"
|
|
},
|
|
"./find": {
|
|
"types": "./find.d.ts",
|
|
"import": "./find.mjs",
|
|
"require": "./find.js"
|
|
},
|
|
"./package": {
|
|
"types": "./package.d.ts",
|
|
"import": "./package.mjs",
|
|
"require": "./package.js"
|
|
},
|
|
"./resolve": {
|
|
"types": "./resolve.d.ts",
|
|
"import": "./resolve.mjs",
|
|
"require": "./resolve.js"
|
|
},
|
|
"./walk": {
|
|
"types": "./walk.d.ts",
|
|
"import": "./walk.mjs",
|
|
"require": "./walk.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"test": "uvu"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"devDependencies": {
|
|
"uvu": "0.5"
|
|
}
|
|
}
|