Files
MinecraftLegacy/package.json
Andrew P. Harper 556ce19725 Add frontend scaffold, assets, and config
Initial project add: React + Vite frontend scaffold including index.html (with metadata and redirect), src files (App.jsx, main.jsx, styles.css), vite.config.js, and package.json. Adds README, MIT LICENSE, .gitignore, GitHub issue & PR templates, and a large collection of static assets (images, logos, loading screens, backgrounds, and audio). Prepares the repository for local development and deployment to Cloudflare Pages.

Co-Authored-By: uhalexz_ <152796233+uhalexz@users.noreply.github.com>
Co-Authored-By: Leighton Marley <65038774+lmarl3y@users.noreply.github.com>
Co-Authored-By: lolali054 <62222309+lolali054@users.noreply.github.com>
2026-03-05 23:15:46 -05:00

31 lines
780 B
JSON

{
"name": "minecraftlegacy-web",
"private": false,
"version": "1.0.0",
"description": "Frontend for Minecraft Legacy Edition project",
"author": "MinecraftConsole",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MinecraftConsole/MinecraftLegacy.git"
},
"bugs": {
"url": "https://github.com/MinecraftConsole/MinecraftLegacy/issues"
},
"homepage": "https://github.com/MinecraftConsole/MinecraftLegacy",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typeface-minecraft": "^1.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.4.1",
"vite": "^5.4.11"
}
}