- 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
43 lines
938 B
JSON
43 lines
938 B
JSON
{
|
|
"name": "lz-string",
|
|
"version": "1.5.0",
|
|
"license": "MIT",
|
|
"filename": "lz-string.js",
|
|
"description": "LZ-based compression algorithm",
|
|
"homepage": "http://pieroxy.net/blog/pages/lz-string/index.html",
|
|
"keywords": [
|
|
"lz",
|
|
"compression",
|
|
"string"
|
|
],
|
|
"main": "libs/lz-string.js",
|
|
"typings": "typings/lz-string.d.ts",
|
|
"bin": {
|
|
"lz-string": "bin/bin.js"
|
|
},
|
|
"scripts": {},
|
|
"dependencies": {},
|
|
"devDependencies": {},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pieroxy/lz-string.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pieroxy/lz-string/issues"
|
|
},
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"author": "pieroxy <pieroxy@pieroxy.net>",
|
|
"autoupdate": {
|
|
"source": "git",
|
|
"target": "git://github.com/pieroxy/lz-string.git",
|
|
"basePath": "libs/",
|
|
"files": [
|
|
"lz-string.js",
|
|
"lz-string.min.js",
|
|
"base64-string.js"
|
|
]
|
|
}
|
|
}
|