Add project source with .gitignore, remove node_modules and dist from tracking

This commit is contained in:
周徐浩
2026-07-17 03:23:57 +08:00
parent 4f6c48e418
commit 0237da7c66
20 changed files with 3461 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "mclive-website",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.4.0",
"lucide-react": "^0.468.0",
"motion": "^12.23.26",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"three": "^0.182.0"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.1",
"typescript": "~5.9.3",
"vite": "^7.2.7"
}
}