Files
headroom/frontend/node_modules/check-error/package.json
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- Delete old Vite+Svelte frontend
- Initialize new SvelteKit project with TypeScript
- Configure Tailwind CSS v4 + DaisyUI
- Implement JWT authentication with auto-refresh
- Create login page with form validation (Zod)
- Add protected route guards
- Update Docker configuration for single-stage build
- Add E2E tests with Playwright (6/11 passing)
- Fix Svelte 5 reactivity with $state() runes

Known issues:
- 5 E2E tests failing (timing/async issues)
- Token refresh implementation needs debugging
- Validation error display timing
2026-02-17 16:19:59 -05:00

47 lines
1.2 KiB
JSON

{
"name": "check-error",
"description": "Error comparison and information related utility for node and the browser",
"keywords": [
"check-error",
"error",
"chai util"
],
"license": "MIT",
"author": "Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)",
"contributors": [
"David Losert (https://github.com/davelosert)",
"Keith Cirkel (https://github.com/keithamus)",
"Miroslav Bajtoš (https://github.com/bajtos)",
"Lucas Fernandes da Costa (https://github.com/lucasfcosta)"
],
"files": [
"index.js",
"check-error.js"
],
"type": "module",
"main": "./index.js",
"module": "./index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chaijs/check-error.git"
},
"scripts": {
"lint": "eslint index.js test/",
"pretest": "npm run lint",
"test": "npm run test:node && npm run test:browser",
"test:browser": "web-test-runner",
"test:node": "mocha"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@web/test-runner": "^0.20.2",
"eslint": "^9.31.0",
"mocha": "^11.7.1",
"simple-assert": "^2.0.0"
},
"engines": {
"node": ">= 16"
},
"version": "2.1.3"
}