package.json 535 B

12345678910111213141516171819202122
  1. {
  2. "name": "test-tools",
  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/test-tools/open": {
  9. "message": "test-tools:open"
  10. },
  11. "i18n:MAIN_MENU.package.title/test-tools/hello": {
  12. "message": "test-tools:say-hello"
  13. }
  14. },
  15. "panel": {
  16. "main": "panel/index.js",
  17. "type": "dockable",
  18. "title": "test-tools",
  19. "width": 400,
  20. "height": 300
  21. }
  22. }