package.json 719 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "i18n",
  3. "version": "0.1.0",
  4. "description": "The package template for getting started.",
  5. "author": "Cocos Creator",
  6. "main": "main.js",
  7. "main-menu": {
  8. "i18n:MAIN_MENU.package.title/i18n": {
  9. "message": "i18n:open"
  10. }
  11. },
  12. "runtime-resource": {
  13. "path": "runtime-scripts",
  14. "name": "plugin"
  15. },
  16. "reload": {
  17. "ignore": [
  18. "runtime-scripts/**/*"
  19. ]
  20. },
  21. "scene-script": "utils/scene.js",
  22. "panel": {
  23. "main": "panel/index.js",
  24. "type": "dockable",
  25. "title": "i18n",
  26. "width": 400,
  27. "height": 300,
  28. "min-width": 300,
  29. "min-height": 300
  30. },
  31. "profiles": {
  32. "project": {
  33. "languages": [
  34. ],
  35. "default_language": ""
  36. }
  37. }
  38. }