{ "name": "countdown", "version": "1.0.0", "description": "Multi-player chess timer with carousel navigation", "main": "src/js/app.js", "scripts": { "start": "docker run -d -p 8080:80 --name game-timer-container game-timer:latest", "stop": "docker stop game-timer-container && docker rm game-timer-container", "build": "docker build -t 'game-timer:latest' .", "rebuild": "npm run stop || true && npm run build && npm run start", "logs": "docker logs game-timer-container", "status": "docker ps | grep game-timer-container", "dev": "npx http-server . -o /public", "clean": "docker system prune -f" }, "keywords": [ "timer", "game", "chess", "pwa" ], "author": "", "license": "SEE LICENSE IN LICENSE", "repository": { "type": "git", "url": "https://gitea.virtonline.eu/2HoursProject/game-timer.git" } }