package.json 1023 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "starter-template-basic-typescript",
  3. "version": "1.0.0",
  4. "description": "Basic Phaser Editor 2D project template for TypeScript.",
  5. "scripts": {
  6. "test": "echo \"Error: no test specified\" && exit 1",
  7. "start": "tsc -w",
  8. "build": "tsc -b",
  9. "editor": "phasereditor2d-launcher -project . -port 1959",
  10. "editor-remote": "phasereditor2d-launcher -project . -disable-open-browser -public -port 1959"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/PhaserEditor2D/starter-template-basic-typescript.git"
  15. },
  16. "author": "Phaser Editor 2D <[email protected]> (https://phasereditor2d.com/)",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/PhaserEditor2D/starter-template-basic-typescript/issues"
  20. },
  21. "homepage": "https://github.com/PhaserEditor2D/starter-template-basic-typescript#readme",
  22. "devDependencies": {
  23. "phasereditor2d-launcher": "^3.32.0",
  24. "typescript": "^5.0.4"
  25. },
  26. "dependencies": {
  27. "phaser": "^3.70.0"
  28. }
  29. }