forked from Xaqron/shellman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 966 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 966 Bytes
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
{
"name": "shellman",
"displayName": "shellman",
"description": "Shell script snippet",
"version": "5.6.0",
"publisher": "Remisa",
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/yousefvand/shellman.git"
},
"galleryBanner": {
"color": "#A79E35",
"theme": "dark"
},
"engines": {
"vscode": "^1.28.1"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "shellscript",
"path": "./snippets/snippets.json"
}
]
},
"devDependencies": {
"cspell": "^5.13.4",
"path": "^0.12.7"
},
"scripts": {
"build": "node build.js",
"build-rem": "node build.js && yes | cp ~/Code/shellman/snippets/snippets.json ~/.config/Code/User/snippets/shellscript.json",
"spellcheck": "npx cspell ./**/*"
},
"dependencies": {
"ovsx": "0.2.1",
"vsce": "^2.5.3"
}
}