-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "vscode-tldr",
"displayName": "tl;dr pages",
"description": "Hover for commands using simplified and community-driven man pages.",
"version": "1.0.0",
"publisher": "bmuskalla",
"author": {
"name": "Benjamin Muskalla",
"email": "b.muskalla@gmail.com"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.33.0"
},
"icon": "images/books.png",
"repository": {
"type": "git",
"url": "https://github.com/bmuskalla/vscode-tldr.git"
},
"bugs": "https://github.com/bmuskalla/vscode-tldr/issues",
"homepage": "https://github.com/bmuskalla/vscode-tldr/blob/master/README.md",
"galleryBanner": {
"color": "#313131",
"theme": "dark"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"tldr",
"man",
"shell",
"cli",
"bash"
],
"activationEvents": [
"onLanguage:dockerfile",
"onLanguage:makefile",
"onLanguage:powershell",
"onLanguage:shellscript",
"onLanguage:bat"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"tslint": "^5.12.1",
"@types/node": "^10.12.21"
}
}