-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "sweeper",
"version": "1.0.4",
"description": "A VS Code extension that cleans ai-generated comments from your code.",
"main": "src/extension.js",
"publisher": "SiddheshUmeshSarang",
"icon": "assets/sweeper.png",
"repository": {
"type": "git",
"url": "https://github.com/SIDDHESHUMESHSARANG/Sweeper"
},
"engines": {
"vscode": "^1.80.0"
},
"contributes": {
"commands": [
{
"command": "extension.getFileExtension",
"title": "Get File Extension"
},
{
"command": "extension.removeComments",
"title": "Sweep Comments"
}
],
"menus": {
"commandPalette": [
{
"command": "extension.removeComments",
"when": "editorTextFocus"
}
]
}
},
"activationEvents": [
"onCommand:extension.removeComments",
"onStartupFinished"
],
"scripts": {
"test": "echo \"test\"",
"package": "vsce package",
"install-local": "code --install-extension sweeper-1.0.2.vsix"
},
"keywords": [
"vscode",
"extension",
"code",
"cleanup",
"comments"
],
"author": "Siddhesh Umesh Sarang",
"license": "ISC",
"devDependencies": {
"vscode": "^1.80.0",
"vsce": "^2.15.0"
}
}