- 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
40 lines
834 B
JSON
40 lines
834 B
JSON
{
|
|
"name": "sirv",
|
|
"version": "3.0.2",
|
|
"description": "The optimized & lightweight middleware for serving requests to static assets",
|
|
"repository": "lukeed/sirv",
|
|
"module": "build.mjs",
|
|
"types": "index.d.ts",
|
|
"main": "build.js",
|
|
"license": "MIT",
|
|
"files": [
|
|
"build.*",
|
|
"index.d.*"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./index.d.mts",
|
|
"default": "./build.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./index.d.ts",
|
|
"default": "./build.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"author": {
|
|
"name": "Luke Edwards",
|
|
"email": "luke@lukeed.com",
|
|
"url": "https://lukeed.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@polka/url": "^1.0.0-next.24",
|
|
"mrmime": "^2.0.0",
|
|
"totalist": "^3.0.0"
|
|
}
|
|
} |