-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) 路 2.37 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) 路 2.37 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
{
"name": "logboss",
"displayName": "LogBoss",
"description": "LogBoss is a VS Code extension that helps you manage console.log statements effortlessly. Quickly highlight or remove logs in your current file keeping your code clean and production-ready. 馃殌",
"version": "0.0.11",
"icon": "images/logboss.png",
"publisher": "ubaid",
"engines": {
"vscode": "^1.96.0"
},
"keywords": [
"console",
"log",
"console.log",
"debug",
"cleanup",
"logging",
"boss",
"log boss",
"logboss",
"remove log",
"console manager",
"console cleaner",
"console remover",
"console highlighter",
"debug cleanup",
"development tools",
"productivity",
"code cleanup",
"javascript",
"typescript",
"debugging",
"console.debug",
"console.error",
"console.warn",
"console.info",
"code quality",
"clean code"
],
"categories": [
"Formatters",
"Programming Languages",
"Debuggers",
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "logboss.showCommands",
"title": "LogBoss: Show Commands"
},
{
"command": "logboss.toggleHighlightConsoles",
"title": "LogBoss: Toggle Highlight Console"
},
{
"command": "logboss.removeConsoleLogs",
"title": "LogBoss: Remove Console Logs"
}
],
"keybindings": [
{
"command": "logboss.showCommands",
"key": "ctrl+shift+space",
"mac": "cmd+shift+space",
"when": "editorTextFocus"
}
]
},
"scripts": {
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"repository": {
"type": "git",
"url": "https://github.com/Ubaid-Manzoor/LogBoss"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.16.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"path-browserify": "^1.0.1"
}
}