Files
Reactive-Resume/packages/utils/package.json
T
Amruth Pillai 7a0d1e93f3 fix(review): restore cookie attrs + color fallback, drop stale knip entry
Code-review findings:
- donation-toast: restore path/secure/sameSite cookie attributes the
  inlined useCookie dropped (security/scope regression).
- utils/color: restore @uiw fallback so percentage-notation rgb() still
  converts (custom style-rule colors are arbitrary strings); add tests
  pinning the one real difference vs the black fallback.
- knip: drop stale npm-check-updates ignoreDependencies entry.

Claude-Session: https://claude.ai/code/session_012Bnvt1MghwHj4qQRxuQUGa
2026-07-04 22:25:06 +02:00

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.20260704.1",
"typescript": "^6.0.3"
}
}