-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.55 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
{
"name": "codeclean",
"displayName": "CodeClean — Code Quality Analyzer",
"description": "Find dead code, security issues, memory leaks, circular deps, complexity and 20 more checks — all locally, zero install, nothing ever uploaded.",
"version": "1.0.2",
"publisher": "Veloce-AI",
"author": "VeloceAI <contact@veloceai.in>",
"license": "MIT",
"homepage": "https://github.com/Veloce-AI/CodeClean",
"repository": {
"type": "git",
"url": "https://github.com/Veloce-AI/CodeClean.git"
},
"bugs": {
"url": "https://github.com/Veloce-AI/CodeClean/issues"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"code quality",
"static analysis",
"dead code",
"security",
"lint",
"complexity",
"memory leaks",
"circular dependencies",
"accessibility",
"code smells",
"clean code",
"refactoring"
],
"icon": "logo.png",
"galleryBanner": {
"color": "#0a0a0c",
"theme": "dark"
},
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "codeclean.open",
"title": "Open CodeClean",
"category": "CodeClean",
"icon": "$(shield)"
},
{
"command": "codeclean.openCurrentFolder",
"title": "Analyze Current Workspace",
"category": "CodeClean",
"icon": "$(search)"
},
{
"command": "codeclean.openInBrowser",
"title": "Open CodeClean in Browser",
"category": "CodeClean",
"icon": "$(browser)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "codeclean-container",
"title": "CodeClean",
"icon": "icon-activity.svg"
}
]
},
"views": {
"codeclean-container": [
{
"type": "webview",
"id": "codeclean.mainView",
"name": "CodeClean"
}
]
},
"menus": {
"commandPalette": [
{
"command": "codeclean.open"
},
{
"command": "codeclean.openCurrentFolder"
}
],
"editor/title": [
{
"command": "codeclean.open",
"group": "navigation",
"when": "false"
}
]
},
"keybindings": [
{
"command": "codeclean.open",
"key": "ctrl+shift+q",
"mac": "cmd+shift+q"
}
]
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@vscode/vsce": "^3.0.0"
}
}