-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 3.95 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 3.95 KB
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
160
161
162
{
"name": "xkcoding-api-navigator",
"displayName": "API Navigator for Spring Boot",
"version": "1.0.6",
"description": "Navigate and manage REST APIs in Java SpringBoot projects",
"icon": "images/icon.png",
"categories": [
"Other"
],
"keywords": [
"java",
"spring",
"springboot",
"api",
"rest",
"navigation"
],
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onLanguage:java",
"onCommand:apiNavigator.refresh",
"onCommand:apiNavigator.search"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "apiNavigator",
"title": "API Navigator",
"icon": "$(symbol-interface)"
}
]
},
"views": {
"apiNavigator": [
{
"id": "apiNavigatorWebView",
"name": "API Navigator",
"type": "webview"
}
]
},
"commands": [
{
"command": "apiNavigator.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "apiNavigator.search",
"title": "Quick Search (CMD+\\)",
"icon": "$(search)"
},
{
"command": "apiNavigator.openApi",
"title": "Open API"
},
{
"command": "apiNavigator.loadMore",
"title": "Load More"
},
{
"command": "apiNavigator.searchInPanel",
"title": "Search in Sidebar",
"icon": "$(filter)"
},
{
"command": "apiNavigator.clearPanelSearch",
"title": "Clear Search",
"icon": "$(close)"
},
{
"command": "apiNavigator.startSearch",
"title": "Start Search",
"icon": "$(search)"
},
{
"command": "apiNavigator.editSearch",
"title": "Edit Search",
"icon": "$(edit)"
},
{
"command": "apiNavigator.showStatistics",
"title": "Show Statistics",
"icon": "$(graph)"
},
{
"command": "apiNavigator.advancedSearch",
"title": "Advanced Search",
"icon": "$(search-view)"
}
],
"keybindings": [
{
"command": "apiNavigator.search",
"key": "cmd+\\",
"mac": "cmd+\\",
"win": "ctrl+\\",
"linux": "ctrl+\\"
},
{
"command": "apiNavigator.clearPanelSearch",
"key": "cmd+shift+\\",
"mac": "cmd+shift+\\",
"win": "ctrl+shift+\\",
"linux": "ctrl+shift+\\"
}
],
"menus": {
"view/title": [
{
"command": "apiNavigator.advancedSearch",
"when": "view == apiNavigatorView",
"group": "navigation@1"
},
{
"command": "apiNavigator.showStatistics",
"when": "view == apiNavigatorView",
"group": "navigation@2"
}
]
},
"viewsWelcome": [
{
"view": "apiNavigatorView",
"contents": "没有找到Spring Boot API端点\n\n请确保当前项目:\n• 包含Java源文件\n• 使用Spring Boot框架\n• 有@RestController或@Controller注解\n\n[刷新](command:apiNavigator.refresh)\n\n[查看文档](https://github.com/xkcoding/API-Navigator)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "24.x",
"@types/vscode": "^1.60.0",
"jest": "^29.5.0",
"ovsx": "^0.8.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"ignore": "^7.0.5",
"java-ast": "^0.4.1"
},
"author": "xkcoding (Yangkai.Shen) <237497819@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xkcoding/API-Navigator.git"
},
"publisher": "xkcoding"
}