初始化KaboomJS游戏模板项目
- 基于KaboomJS的平台跳跃游戏 - 包含玩家角色、敌人、金币收集系统 - 支持本地库文件,无需CDN - 配置环境变量端口APP_PORT_1 - 包含Docker容器化部署 - 完整的Makefile构建脚本 - 符合平台标准的.eazy配置文件
parents
Showing
.eazy
0 → 100644
.gitignore
0 → 100644
.resource/resource_dev.json
0 → 100644
.vscode/extensions.json
0 → 100644
Dockerfile
0 → 100644
Makefile
0 → 100644
README.md
0 → 100644
docker-entrypoint.sh
0 → 100755
game.js
0 → 100644
index.html
0 → 100644
lib/kaboom.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package-lock.json
0 → 100644
package.json
0 → 100644
{ | |||
"name": "kaboomjs-game", | |||
"version": "1.0.0", | |||
"description": "A simple game built with KaboomJS", | |||
"main": "game.js", | |||
"scripts": { | |||
"start": "npx http-server . -p ${APP_PORT_1:-3000} -c-1", | |||
"dev": "npx http-server . -p ${APP_PORT_1:-3000} -c-1 -o", | |||
"build": "echo 'No build step required for KaboomJS'", | |||
"test": "echo 'No tests specified'" | |||
}, | |||
"keywords": [ | |||
"kaboomjs", | |||
"game", | |||
"javascript", | |||
"html5" | |||
], | |||
"author": "Developer", | |||
"license": "MIT", | |||
"dependencies": {}, | |||
"devDependencies": { | |||
"http-server": "^14.1.1" | |||
} | |||
} |
Please register or sign in to comment