-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.13 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
{
"name": "highlight-comments",
"displayName": "Highlight Comments",
"description": "A VS Code extension to highlight comments with different colors.",
"version": "0.0.1",
"publisher": "your-publisher",
"engines": {
"vscode": "^1.70.0"
},
"contributes": {
"languages": [
{
"id": "javascript",
"aliases": [
"JavaScript",
"js"
],
"extensions": [
".js"
]
},
{
"id": "typescript",
"aliases": [
"TypeScript",
"ts"
],
"extensions": [
".ts"
]
}
],
"commands": [
{
"command": "extension.highlightComments",
"title": "Highlight Comments"
}
]
},
"activationEvents": [
"onCommand:extension.highlightComments"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"debug": "node ./out/extension.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"typescript": "^4.0.0",
"@types/vscode": "^1.1.37"
}
}