mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-08 03:54:58 +10:00
893df25aff
Add an Applications module at /dashboard/applications: pipeline board (dnd-kit), table view with bulk actions, Insights (fit tiles, funnel, sources, shareable funnel-flow SVG), campaigns, tags, CSV import, and Add/Edit/Detail slide-overs. Each application links a live Reactive Resume. AI "Application Copilot" (applications.ai.*): job-posting autofill, resume↔job match score (fit ring), resume tailoring, and cover-letter / follow-up drafting — via the user's configured provider. Board cards + table rows get context menus (edit / move / archive / delete). Charts are CSS/SVG (no new chart dep); adds a UI Checkbox. Also includes local TanStack devtools setup and toolchain bumps. Claude-Session: https://claude.ai/code/session_01TEeRHnEayw2MFCShFRyL5f
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "@reactive-resume/utils",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"exports": {
|
|
"./color": "./src/color.ts",
|
|
"./file": "./src/file.ts",
|
|
"./locale": "./src/locale.ts",
|
|
"./monorepo.node": "./src/monorepo.node.ts",
|
|
"./rate-limit": "./src/rate-limit.ts",
|
|
"./string": "./src/string.ts",
|
|
"./style": "./src/style.ts",
|
|
"./url": "./src/url.ts",
|
|
"./url-security.node": "./src/url-security.node.ts"
|
|
},
|
|
"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": {
|
|
"@sindresorhus/slugify": "^3.0.0",
|
|
"@uiw/color-convert": "^2.10.3",
|
|
"clsx": "^2.1.1",
|
|
"tailwind-merge": "^3.6.0",
|
|
"unique-names-generator": "^4.7.1",
|
|
"uuid": "^14.0.1",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@reactive-resume/config": "workspace:*",
|
|
"@types/node": "^26.1.0",
|
|
"@typescript/native-preview": "7.0.0-dev.20260705.1",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|