-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 905 Bytes
/
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
{
"name": "bashnsippets",
"displayName": "BashSnippets",
"description": "BashSnippets is a Visual Studio Code extension that provides a collection of snippets for bash scripting.",
"publisher": "WaseemAkram",
"repository": "https://github.com/evildevill/BashSnippets-vscode.git",
" bugs": {
"url": "https://github.com/evildevill/BashSnippets-vscode/issues"
},
"homepage": "https://hackerwasii.com",
"license": "MIT",
"icon": "logo.png",
"version": "1.0.7",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Snippets", "Education", "Formatters", "Programming Languages", "Debuggers", "Linters", "Keymaps", "Themes", "Other"
],
"contributes": {
"snippets": [
{
"language": "shellscript",
"path": "./snippets/snippets.code-snippets"
}
]
}
}