mirror of
https://github.com/ghndrx/k8s-game-2048.git
synced 2026-02-10 06:45:07 +00:00
- Complete 2048 game implementation with responsive design - Knative Serving manifests for dev/staging/prod environments - Scale-to-zero configuration with environment-specific settings - Custom domain mapping for wa.darknex.us subdomains - GitHub Actions workflows for CI/CD - Docker container with nginx and health checks - Setup scripts for Knative and Kourier installation - GHCR integration for container registry
37 lines
1009 B
JSON
37 lines
1009 B
JSON
{
|
|
"name": "k8s-game-2048",
|
|
"version": "1.0.0",
|
|
"description": "2048 game deployed on Kubernetes using Knative Serving with Kourier",
|
|
"main": "src/index.html",
|
|
"scripts": {
|
|
"start": "python3 -m http.server 8080 --directory src",
|
|
"build": "docker build -t k8s-game-2048 .",
|
|
"deploy:dev": "./scripts/deploy.sh dev",
|
|
"deploy:staging": "./scripts/deploy.sh staging",
|
|
"deploy:prod": "./scripts/deploy.sh prod",
|
|
"setup:knative": "./scripts/setup-knative.sh",
|
|
"setup:kourier": "./scripts/setup-kourier.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ghndrx/k8s-game-2048.git"
|
|
},
|
|
"keywords": [
|
|
"2048",
|
|
"game",
|
|
"kubernetes",
|
|
"knative",
|
|
"kourier",
|
|
"serverless",
|
|
"scale-to-zero"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ghndrx/k8s-game-2048/issues"
|
|
},
|
|
"homepage": "https://github.com/ghndrx/k8s-game-2048#readme",
|
|
"devDependencies": {},
|
|
"dependencies": {}
|
|
}
|