Files
tiennm99 b2f33d0266 build: move web/ from pnpm to npm
Replace pnpm-lock.yaml with package-lock.json. The three security overrides
move from pnpm-workspace.yaml to package.json#overrides, where npm reads them
natively. Only the postcss floor is still live; @babel/core and js-yaml left
the tree with Next.js but are kept so the declared floors survive if a
dependency reintroduces them.
2026-08-17 12:24:21 +07:00

34 lines
764 B
JSON

{
"name": "loldle",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.1",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tailwindcss/vite": "^4.3.3",
"eslint": "^10",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^17.7.0",
"svelte": "^5.56.8",
"tailwindcss": "^4.3.3",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"overrides": {
"@babel/core": "^7.29.7",
"js-yaml": "^4.3.0",
"postcss": ">=8.5.16"
}
}