-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
159 lines (159 loc) · 4.92 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "vscode-plugin-demo",
"displayName": "vscode-plugin-BySXR",
"description": "VSCode插件BySXR",
"keywords": [
"vscode",
"plugin",
"BySXR"
],
"version": "1.0.4",
"publisher": "sxei",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"*"
],
"main": "./dist/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Code插件demo",
"properties": {
"vscodePluginDemo.yourName": {
"type": "string",
"default": "guest",
"description": "你的名字"
},
"vscodePluginDemo.showTip": {
"type": "boolean",
"default": true,
"description": "启动时显示自定义欢迎页"
},
"vscodePluginDemo.testArr": {
"type": "array",
"default": [
1
],
"description": "测试数组"
},
"vscodePluginDemo.autoUrl": {
"type": "string",
"default": "http://localhost:9076",
"description": "重发使用的url"
},
"vscodePluginDemo.autoUserNo": {
"type": "string",
"default": "zjhn",
"description": "重发使用的自动登录用户名(采取打开插件时获取token)"
},
"vscodePluginDemo.autoPWD": {
"type": "string",
"default": "123456",
"description": "重发使用的自动登录密码"
},
"vscodePluginDemo.SendToken": {
"type": "string",
"default": "",
"description": "身份信息失效时使用的token"
}
}
},
"commands": [
{
"command": "extension.showLastWebLog",
"title": "显示最近调用"
},
{
"command": "extension.apiControllerJump",
"title": "跳转到api控制器"
},
{
"command": "extension.demo.showWelcome",
"title": "显示自定义欢迎页"
},
{
"command": "extension.demo.showJson",
"title": "JSON展示"
}
],
"menus": {
"editor/context": [
{
"command": "extension.apiControllerJump",
"group": "navigation@8"
},
{
"when": "resourceLangId == csharp",
"command": "extension.showLastWebLog",
"group": "navigation@7"
}
],
"editor/title": [
{
"when": "resourceLangId == csharp",
"command": "extension.showLastWebLog",
"group": "navigation@0"
}
]
},
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "html",
"path": "./snippets/html.json"
}
],
"iconThemes": [
{
"id": "testIconTheme",
"label": "测试图标主题",
"path": "./theme/icon-theme.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode production",
"webpack-dev": "webpack --mode production"
},
"devDependencies": {
"@types/node": "^14.0.11",
"@types/vscode": "^1.28.0",
"aws-sdk": "^2.814.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.2.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"node-loader": "^1.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-encoding-plugin": "^0.3.1"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/xianrui69/vscode-plugin-demo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xianrui69/vscodeWeblogExtend"
},
"homepage": "https://github.com/xianrui69/vscodeWeblogExtend/blob/master/README.md",
"dependencies": {
"sqlite3": "^4.2.0",
"uuid": "^8.1.0"
}
}