-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.config.js
42 lines (42 loc) · 972 Bytes
/
plugin.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @type { import ('./src/types/utools').PluginConfig }
*/
const pluginConfig = {
pluginName: 'utools-tmpl',
// version: 'v1.0.0',
description: '使用模板插件模式',
author: '罗君',
homepage: 'https://github.com/adams549659584/utools-tmpl',
// main: 'index.html',
preload: 'preload.js',
logo: 'assets/img/logo.png',
platform: ['win32'],
// development: {
// main: '',
// preload: '',
// logo: '',
// buildPath: '',
// },
// pluginSetting: {
// single: true,
// height: 0,
// },
features: [
{
code: 'utools_tmpl_hello_none',
explain: '无 UI 模式',
cmds: ['hello', 'none'],
},
{
code: 'utools_tmpl_hello_list',
explain: '列表模式',
cmds: ['hello', 'list'],
},
{
code: 'utools_tmpl_hello_doc',
explain: '文档模式',
cmds: ['hello', 'doc'],
},
],
};
export default pluginConfig;