mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-26 00:02:32 +10:00
Upgrades to Better Auth 1.7, expands Custom Styles coverage of item headers, and adds a human-approval step to the AI agent's resume edits. Breaking for self-hosters using a custom OAuth provider: the callback path changes from /api/auth/oauth2/callback/custom to /api/auth/callback/custom, and installs using OAUTH_DISCOVERY_URL need one additional UPDATE after upgrading. Both are documented in docs/self-hosting/sso.mdx. - Better Auth 1.7, with the account issuer migration and the jwks alg/crv columns the 1.7 jwt plugin requires - Agent edits gated behind an approval step, with crash-safe runs and context pruning - item-header now covers every section header row on every template; adds the item-header-row part - Fixes provider unlinking, auth error messages, and version conflicts on freshly created resumes - New /auth/error page, translated across all 53 target locales - DeepSeek Harness plugin moved into packages/dsh-plugin - Dependency bumps across the workspace
29 lines
949 B
JSON
29 lines
949 B
JSON
{
|
|
"name": "@reactive-resume/tooling",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"db:reset": "tsx database/reset.ts",
|
|
"docs:gen": "tsx semantic-css/generate-reference.ts",
|
|
"fonts:generate": "tsx fonts/generate.ts",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:ci": "vitest run --coverage --reporter=default --reporter=github-actions --reporter=json --reporter=junit --outputFile.json=reports/vitest-results.json --outputFile.junit=reports/vitest-junit.xml --passWithNoTests",
|
|
"typecheck": "tsgo --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@reactive-resume/schema": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@reactive-resume/config": "workspace:*",
|
|
"@reactive-resume/env": "workspace:*",
|
|
"@reactive-resume/resume": "workspace:*",
|
|
"@types/pg": "^8.23.1",
|
|
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
"drizzle-orm": "1.0.0-rc.4",
|
|
"pg": "^8.23.0",
|
|
"tsx": "^4.23.12",
|
|
"vitest": "^4.1.11"
|
|
}
|
|
}
|