mirror of
https://github.com/tiennm99/sokoban.git
synced 2026-05-23 08:25:45 +00:00
31 lines
892 B
JSON
31 lines
892 B
JSON
{
|
|
"name": "sokoban",
|
|
"description": "A simple Sokoban game built with Phaser 3 and Vite",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tiennm99/sokoban.git"
|
|
},
|
|
"author": "tiennm99",
|
|
"license": "MIT",
|
|
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
|
|
"bugs": {
|
|
"url": "https://github.com/tiennm99/sokoban/issues"
|
|
},
|
|
"homepage": "https://tiennm99.github.io/sokoban/",
|
|
"scripts": {
|
|
"dev": "node log.js dev & vite --config vite/config.dev.mjs",
|
|
"build": "node log.js build & vite build --config vite/config.prod.mjs",
|
|
"dev-nolog": "vite --config vite/config.dev.mjs",
|
|
"build-nolog": "vite build --config vite/config.prod.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"terser": "^5.39.0",
|
|
"vite": "^6.3.1"
|
|
},
|
|
"dependencies": {
|
|
"phaser": "^3.88.2"
|
|
}
|
|
}
|