https://github.com/deadronos/space-unicorn-clicker
https://github.com/deadronos/space-unicorn-clicker
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/deadronos/space-unicorn-clicker
- Owner: deadronos
- License: mit
- Created: 2025-10-22T10:26:35.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-03-19T09:26:02.000Z (2 months ago)
- Last Synced: 2026-03-20T02:39:13.643Z (2 months ago)
- Language: TypeScript
- Homepage: https://deadronos.github.io/space-unicorn-clicker/
- Size: 1.02 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
npm ru
# 🦄 Space Unicorn Clicker (React + TS + Vite + Tailwind)
Minimal idle/clicker MVP where a cosmic unicorn raids battleships with a glowing laser horn.
- Click damage + Auto-DPS + auto-buyer
- Boss every 10 levels
- Persistent save + offline progress
- Laser beam animation, impact sparks, screen shake, starfield
- Unicorn art in `/public/unicorn.jpg`
## Run
```bash
npm i
npm run dev
```
## Build
```bash
npm run build
npm run preview
```
## Optional: Verify UI via Playwright (Python)
A simple verification script is included in `verification/verify_app.py` that uses Playwright to open the app and take a screenshot.
```bash
# Start the dev server in a separate terminal
npm run dev
# In another terminal (requires Python + Playwright):
python verification/verify_app.py
```
You may need to install Playwright first:
```bash
pip install playwright
playwright install chromium
```