-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
129 lines (129 loc) · 2.94 KB
/
package.json
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
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "comments-toolkit",
"displayName": "Comments Toolkit",
"description": "Completions to create some fancy comments in Visual Studio Code",
"version": "1.2.0",
"engines": {
"vscode": "^1.93.0"
},
"publisher": "Miglisoft",
"keywords": [
"comment",
"snippet",
"completion"
],
"repository": {
"type": "git",
"url": "https://github.com/migliori/vsc-comments-toolkit"
},
"bugs": {
"url": "https://github.com/migliori/vsc-comments-toolkit/issues",
"email": "[email protected]"
},
"icon": "comments-toolkit-logo.png",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:abap",
"onLanguage:bat",
"onLanguage:bibtex",
"onLanguage:clojure",
"onLanguage:coffeescript",
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:cuda-cpp",
"onLanguage:css",
"onLanguage:diff",
"onLanguage:dockerfile",
"onLanguage:fsharp",
"onLanguage:git-commit",
"onLanguage:git-rebase",
"onLanguage:go",
"onLanguage:groovy",
"onLanguage:handlebars",
"onLanguage:html",
"onLanguage:ini",
"onLanguage:java",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:latex",
"onLanguage:less",
"onLanguage:lua",
"onLanguage:makefile",
"onLanguage:markdown",
"onLanguage:objective-c",
"onLanguage:objective-cpp",
"onLanguage:perl",
"onLanguage:perl6",
"onLanguage:php",
"onLanguage:plaintext",
"onLanguage:powershell",
"onLanguage:jade",
"onLanguage:python",
"onLanguage:r",
"onLanguage:razor",
"onLanguage:ruby",
"onLanguage:rust",
"onLanguage:scss",
"onLanguage:sass",
"onLanguage:shaderlab",
"onLanguage:shellscript",
"onLanguage:sql",
"onLanguage:swift",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:tex",
"onLanguage:vb",
"onLanguage:xml",
"onLanguage:xsl",
"onLanguage:yaml"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Comment Toolkit Configuration",
"properties": {
"commentToolkit.baseLength": {
"type": "number",
"default": 40,
"description": "Base length for comment lines."
},
"commentToolkit.separator": {
"type": "string",
"default": "=",
"description": "Separator character for comment lines."
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"clean": "rimraf out",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && NODE_ENV=test node ./node_modules/vscode/bin/test --version 1.93.0"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.93.0",
"rimraf": "^6.0.1",
"tslint": "^5.12.1",
"typescript": "^5.6.2",
"vscode": "^1.1.37"
},
"dependencies": {
"lodash": "^4.17.21",
"tree-sitter": "^0.21.1",
"tree-sitter-html": "^0.23.0"
}
}