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>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "exsolve",
|
|
"version": "1.1.0",
|
|
"description": "Module resolution utilities based on Node.js upstream implementation.",
|
|
"repository": "unjs/exsolve",
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.mjs"
|
|
},
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "obuild",
|
|
"dev": "vitest dev",
|
|
"lint": "eslint . && prettier -c .",
|
|
"lint:fix": "automd && eslint . --fix && prettier -w .",
|
|
"node-ts": "node --disable-warning=ExperimentalWarning --experimental-strip-types",
|
|
"prepack": "pnpm build",
|
|
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
|
|
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
|
|
"test:types": "tsc --noEmit --skipLibCheck"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.0.0",
|
|
"@vitest/coverage-v8": "^4.1.9",
|
|
"automd": "^0.4.3",
|
|
"changelogen": "^0.6.2",
|
|
"eslint": "^10.5.0",
|
|
"eslint-config-unjs": "^0.6.2",
|
|
"happy-dom": "^20.10.6",
|
|
"jiti": "^2.7.0",
|
|
"obuild": "^0.4.36",
|
|
"prettier": "^3.8.4",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.9"
|
|
},
|
|
"packageManager": "pnpm@11.8.0"
|
|
}
|