24 lines
679 B
JSON
24 lines
679 B
JSON
{
|
|
"name": "game-timer",
|
|
"version": "1.0.0",
|
|
"description": "Multi-player chess timer with carousel navigation",
|
|
"main": "src/js/app.js",
|
|
"scripts": {
|
|
"docker:build": "docker build -t 'game-timer:latest' .",
|
|
"start": "docker run -d -p 80:80 --name game-timer game-timer:latest",
|
|
"stop": "docker stop game-timer && docker rm game-timer",
|
|
"rebuild": "npm run stop || true && npm run docker:build && npm run start"
|
|
},
|
|
"keywords": [
|
|
"timer",
|
|
"game",
|
|
"chess",
|
|
"pwa"
|
|
],
|
|
"author": "",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.virtonline.eu/2HoursProject/game-timer.git"
|
|
}
|
|
} |