Files
negotium/package.json
T
Aculix Technologies 4857f1cc26 chore: upgrade to svelte 5 and vite 8
Svelte 4.2 to 5.56, Vite 5 to 8, vite-plugin-svelte 3 to 7. The old tree
wouldn't resolve incrementally, because a stale vite-plugin-svelte-inspector
pinned the v3 peer, so this is a clean reinstall.

Clears all 7 npm audit advisories, including a high-severity Rollup path
traversal.

Reactivity moves to runes: $state, $derived, $effect. Event directives
become properties, and main.js uses mount().

Also drops inputElement, a bind:this target nothing ever read.
2026-08-15 23:59:28 +05:30

32 lines
680 B
JSON

{
"name": "negotium-todo",
"version": "1.0.0",
"description": "A clean, minimal to-do list application with smooth animations and dark/light mode support",
"type": "module",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"svelte": "^5.56.9",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"keywords": [
"todo",
"svelte",
"productivity",
"minimal"
],
"author": "Negotium",
"license": "MIT",
"dependencies": {
"lottie-web": "^5.13.0"
}
}