-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.42 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
{
"name": "vscode-gemfile-infos",
"displayName": "vscode-gemfile-infos",
"description": "Provide useful information on 'hover' of a gem in your Gemfile",
"version": "0.5.7",
"publisher": "ngouy",
"engines": {
"vscode": "^1.43.0"
},
"repository": {
"url": "https://github.com/ngouy/vscode-gemfile-infos"
},
"icon": "Gemfile.png",
"categories": [
"Other",
"Language Packs",
"Programming Languages"
],
"keywords": [
"Gemfile",
"Ruby",
"Gem",
"rails",
"ROR",
"Ruby on Rails"
],
"galleryBanner": {
"color": "#c52f24",
"theme": "dark"
},
"activationEvents": [
"workspaceContains:Gemfile.lock"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"mocha": "^2.3.3",
"typescript": "^4.8.4",
"vscode-test": "^1.3.0"
},
"dependencies": {
"gemfile": "^1.1.0"
},
"__metadata": {
"publisherDisplayName": "ngouy",
"isApplicationScoped": false,
"updated": true,
"isPreReleaseVersion": false,
"preRelease": false,
"id": "6f742ed1-f17f-41ce-bb45-b06ce1379727",
"publisherId": "81cc22b4-e7c2-69ea-97be-fc888c17a2da",
"targetPlatform": "undefined"
},
"contributes": {
"configuration": {
"title": "Gemfile Infos",
"properties": {
"vscodeGemfileInfo.showCurrentVersion": {
"type": "boolean",
"default": true,
"description": "On hover, show installed version."
},
"vscodeGemfileInfo.showLastUpdate": {
"type": "boolean",
"default": true,
"description": "On hover, show last available version."
},
"vscodeGemfileInfo.showPackageManagerLink": {
"type": "boolean",
"default": true,
"description": "On hover, show to the current package manager (eg RubyGem)."
},
"vscodeGemfileInfo.showChangelogLink": {
"type": "boolean",
"default": true,
"description": "On hover, show changelog link."
},
"vscodeGemfileInfo.showHomepageLink": {
"type": "boolean",
"default": true,
"description": "On hover, show homepage link."
},
"vscodeGemfileInfo.showRepoLink": {
"type": "boolean",
"default": true,
"description": "On hover, show code repository link."
}
}
}
}
}