Bump version to 2.3.6 in package.json files. Enhance password validation regex to provide specific error messages for lowercase, uppercase, and numeric requirements instead of generic messages. Add a delete confirmation modal to the profile page with a button that disables if the user has typed a different username, preventing accidental
36 lines
892 B
JSON
36 lines
892 B
JSON
{
|
|
"name": "edh-stats-frontend",
|
|
"version": "2.3.6",
|
|
"description": "Frontend for EDH/Commander stats tracking application",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
"@sveltejs/kit": "^2.57.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"svelte": "^5.55.2",
|
|
"tailwindcss": "^3.4.0",
|
|
"vite": "^8.0.8"
|
|
},
|
|
"keywords": [
|
|
"sveltekit",
|
|
"tailwindcss",
|
|
"magic-the-gathering",
|
|
"edh",
|
|
"commander"
|
|
],
|
|
"author": "EDH Stats App",
|
|
"license": "MIT",
|
|
"main": "postcss.config.js"
|
|
}
|