package.json 623 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "aaa",
  3. "version": "0.0.1",
  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/aaa/open": {
  9. "message": "aaa:open"
  10. },
  11. "i18n:MAIN_MENU.package.title/aaa/hello": {
  12. "message": "aaa:say-hello"
  13. }
  14. },
  15. "panel": {
  16. "main": "panel/index.js",
  17. "type": "dockable",
  18. "title": "aaa",
  19. "width": 400,
  20. "height": 300
  21. },
  22. "reload": {
  23. "test": ["test/**/*", "tests/**/*"],
  24. "renderer": ["renderer/**/*", "panel/**/*"],
  25. "ignore": [],
  26. "main": ["main.js"]
  27. }
  28. }