phaser-game/package.json

30 lines
1011 B
JSON
Raw Normal View History

2024-10-08 17:21:15 -03:00
{
"name": "template-vite",
"description": "A Phaser 3 template using Vite.",
"version": "1.3.2",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-vite.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-vite/issues"
},
"homepage": "https://github.com/phaserjs/template-vite#readme",
"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.31.0",
"vite": "^5.3.1"
},
"dependencies": {
"phaser": "^3.85.2"
}
}