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
49 lines
1.7 KiB
JSON
49 lines
1.7 KiB
JSON
{
|
|
"name": "@reactive-resume/pdf",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"exports": {
|
|
"./browser": "./src/browser.tsx",
|
|
"./document": "./src/document.tsx",
|
|
"./semantic": "./src/semantic/index.ts",
|
|
"./semantic-legacy": "./src/semantic/legacy-converter.ts",
|
|
"./semantic-manifest": "./src/semantic/template-manifest.ts",
|
|
"./semantic-tree": "./src/semantic/tree.ts",
|
|
"./section-title": "./src/section-title.ts",
|
|
"./server": "./src/server.tsx"
|
|
},
|
|
"imports": {
|
|
"#react-pdf-renderer": "@react-pdf/renderer"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsgo --noEmit",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:coverage": "vitest run --coverage --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",
|
|
"test:agent": "vitest run --reporter=agent --reporter=json --outputFile.json=reports/vitest-results.json --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@react-pdf/renderer": "^4.8.1",
|
|
"@reactive-resume/fonts": "workspace:*",
|
|
"@reactive-resume/resume": "workspace:*",
|
|
"@reactive-resume/schema": "workspace:*",
|
|
"@reactive-resume/utils": "workspace:*",
|
|
"cjk-regex": "^3.4.0",
|
|
"node-html-parser": "^9.0.1",
|
|
"phosphor-icons-react-pdf": "^0.1.3",
|
|
"react": "^19.2.8",
|
|
"react-pdf-html": "^2.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/canvas": "1.0.8",
|
|
"@react-pdf/types": "^2.13.1",
|
|
"@reactive-resume/config": "workspace:*",
|
|
"@types/react": "^19.2.18",
|
|
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
"pdfjs-dist": "6.2.108",
|
|
"pixelmatch": "^7.2.0",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|