package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "package_version": 2,
  3. "version": "2.0.1",
  4. "name": "seek-pro",
  5. "description": "快速查找",
  6. "main": "./dist/main.js",
  7. "dependencies": {
  8. "vue": "^3.1.4",
  9. "fs-extra": "^10.0.0"
  10. },
  11. "devDependencies": {
  12. "@types/node": "^16.0.1",
  13. "@types/fs-extra": "^9.0.5",
  14. "typescript": "^4.3.4"
  15. },
  16. "panels": {
  17. "missPanel": {
  18. "title": "查找uuid的丢失",
  19. "type": "dockable",
  20. "main": "dist/panels/seek_miss_panel/seek_miss_panel.js",
  21. "size": {
  22. "min-width": 500,
  23. "min-height": 200,
  24. "width": 600,
  25. "height": 500
  26. }
  27. },
  28. "wherePanel": {
  29. "title": "查找uuid的使用",
  30. "type": "dockable",
  31. "main": "dist/panels/seek_where_panel/seek_where_panel.js",
  32. "size": {
  33. "min-width": 500,
  34. "min-height": 200,
  35. "width": 600,
  36. "height": 500
  37. }
  38. }
  39. },
  40. "contributions": {
  41. "menu": [
  42. {
  43. "path": "i18n:menu.extension/seek-pro",
  44. "label": "查找uuid的丢失",
  45. "message": "open-seek-miss-panel"
  46. }
  47. ],
  48. "messages": {
  49. "get-seek-uuid": {
  50. "methods": [
  51. "get_seek_uuid"
  52. ]
  53. },
  54. "set-seek-uuid": {
  55. "methods": [
  56. "set_seek_uuid"
  57. ]
  58. },
  59. "open-seek-miss-panel": {
  60. "methods": [
  61. "open_seek_miss_panel"
  62. ]
  63. },
  64. "refresh-where-panel": {
  65. "methods": [
  66. "wherePanel.onRefreshUuid"
  67. ]
  68. },
  69. "refresh-miss-panel": {
  70. "methods": [
  71. "missPanel.onRefreshUuid"
  72. ]
  73. }
  74. },
  75. "shortcuts": [
  76. {
  77. "message": "open-seek-miss-panel",
  78. "win": "ctrl+F2",
  79. "mac": "cmd+F2"
  80. }
  81. ],
  82. "assets": {
  83. "menu": {
  84. "methods": "dist/main.js",
  85. "assetMenu": "onAssetMenu"
  86. }
  87. }
  88. },
  89. "author": "yangqun",
  90. "editor": ">=3.3.0",
  91. "scripts": {
  92. "build": "tsc -b",
  93. "watch": "tsc -w"
  94. },
  95. "_storeId": "888a6e3147d86d2da76ad958b81a5b52"
  96. }