- 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
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "set-cookie-parser",
|
|
"version": "3.0.1",
|
|
"description": "Parses set-cookie headers into objects",
|
|
"homepage": "https://github.com/nfriedly/set-cookie-parser",
|
|
"repository": "nfriedly/set-cookie-parser",
|
|
"author": {
|
|
"name": "Nathan Friedly",
|
|
"url": "http://nfriedly.com/"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"dist"
|
|
],
|
|
"main": "./dist/set-cookie.cjs",
|
|
"module": "./lib/set-cookie.js",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"module-sync": "./lib/set-cookie.js",
|
|
"import": "./lib/set-cookie.js",
|
|
"require": "./dist/set-cookie.cjs"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"keywords": [
|
|
"set-cookie",
|
|
"set",
|
|
"cookie",
|
|
"cookies",
|
|
"header",
|
|
"parse",
|
|
"parser"
|
|
],
|
|
"devDependencies": {
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"husky": "^9.1.7",
|
|
"mocha": "^10.3.0",
|
|
"prettier": "^3.2.5",
|
|
"pretty-quick": "^4.0.0",
|
|
"sinon": "^17.0.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
|
|
"test": "npm run build && npm run lint && mocha",
|
|
"autofix": "npm run lint -- --fix",
|
|
"format": "npm run lint -- --fix",
|
|
"build": "node ./build-cjs.js",
|
|
"prepare": "husky"
|
|
},
|
|
"license": "MIT",
|
|
"prettier": {
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|