-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 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
{
"name": "CatNime",
"displayName": "CatNime",
"description": "Delete All Comments in any programming language",
"version": "0.0.2",
"publisher": "royhtml",
"icon": "media/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Snippets",
"Formatters",
"Removed Comments"
],
"activationEvents": [
"onCommand:catnime.deleteComments"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "catnime.deleteComments",
"title": "Remove Comment",
"icon": "media/icon-dark.svg"
}
],
"keybindings": [
{
"command": "catnime.deleteComments",
"key": "ctrl+alt",
"mac": "cmd+alt",
"when": "editorTextFocus"
}
],
"menus": {
"editor/title": [
{
"command": "catnime.deleteComments",
"group": "navigation",
"when": "editorTextFocus"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"typescript-eslint": "^8.61.1",
"eslint": "^10.5.0",
"typescript": "^5.3.3",
"ts-loader": "^9.6.2",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0"
},
"overrides": {
"diff": "^8.0.4",
"serialize-javascript": "^7.0.6"
}
}