- 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
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "known-css-properties",
|
|
"version": "0.37.0",
|
|
"description": "List of known CSS properties",
|
|
"repository": "known-css/known-css-properties",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"bump": "npm version patch && npm publish && git push && git push --tags",
|
|
"download-w3c-data": "node scripts/download-w3c-data.mjs",
|
|
"generate": "node scripts/generate.mjs",
|
|
"lint": "eslint index.js scripts/*.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"css",
|
|
"properties",
|
|
"w3c",
|
|
"chrome",
|
|
"firefox",
|
|
"explorer",
|
|
"edge",
|
|
"safari",
|
|
"opera",
|
|
"samsung-internet",
|
|
"uc-browser"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"name": "Krzysztof Bebenek",
|
|
"email": "kbebenek@kbebenek.me",
|
|
"url": "http://kbebenek.me"
|
|
},
|
|
{
|
|
"name": "Viorel Cojocaru",
|
|
"email": "vio@beanon.com",
|
|
"url": "http://beanon.com"
|
|
}
|
|
],
|
|
"author": {
|
|
"name": "Viorel Cojocaru",
|
|
"email": "vio@beanon.com",
|
|
"url": "http://beanon.com"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/known-css/known-css-properties/issues"
|
|
},
|
|
"homepage": "https://github.com/known-css/known-css-properties#readme",
|
|
"devDependencies": {
|
|
"eslint": "8.57.0",
|
|
"globby": "14.0.1",
|
|
"lodash.sortby": "4.7.0",
|
|
"lodash.uniq": "4.5.0"
|
|
}
|
|
}
|