Files
mathmax/package.json
T
tiennm99 7b75a72a16 feat: initial scaffold
- SvelteKit 2 + Svelte 5 + Tailwind 3 (JS only, paths.base=/mathmax)
- Vietnamese landing page: hero + scope (lớp 6-9) + 3 topic cards (Số học, Đại số, Hình học) all "Sắp ra mắt"
- GitHub Actions: CI (build) on PR + deploy to Pages on main
- Apache-2.0 LICENSE, README, RUNBOOK, CHANGELOG
2026-04-30 21:44:43 +07:00

30 lines
771 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",
"format": "prettier --write ."
},
"dependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"svelte": "^5.0.0",
"vite": "^5.4.0",
"tailwindcss": "^3.4.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0"
},
"devDependencies": {
"svelte-check": "^4.0.0",
"prettier": "^3.3.0",
"prettier-plugin-svelte": "^3.2.0"
}
}