Files
mathmax/package.json
T
tiennm99 c291d52cd2 build: move from pnpm to npm
Replace pnpm-lock.yaml with package-lock.json. The security overrides move to
package.json#overrides with their range operators intact, so advisory floors
stay floors. allowBuilds becomes package.json#allowScripts where the listed
package is actually in the tree.
2026-08-17 13:15:15 +07:00

39 lines
1003 B
JSON

{
"name": "mathmax",
"version": "0.0.1.0",
"private": true,
"type": "module",
"description": "MathMax — Toán tương tác cho học sinh THCS lớp 6-9. Static site.",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./jsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write ."
},
"dependencies": {
"@fontsource/be-vietnam-pro": "^5.2.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.69.3",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tailwindcss/postcss": "^4.3.3",
"autoprefixer": "^10.5.4",
"katex": "^0.17.0",
"postcss": "^8.5.19",
"svelte": "^5.56.6",
"tailwindcss": "^4.3.3",
"vite": "^8.1.5"
},
"devDependencies": {
"prettier": "^3.9.5",
"prettier-plugin-svelte": "^4.1.1",
"svelte-check": "^4.7.3",
"vitest": "^4.1.10"
},
"overrides": {
"cookie": "0.7.2"
}
}