-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.1 KB
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
{
"name": "last-commit",
"displayName": "Last Commit",
"description": "See the last git commit on the status bar.",
"version": "1.1.0",
"publisher": "orhun",
"author": {
"name": "orhun",
"email": "orhunparmaksiz@gmail.com",
"url": "https://github.com/orhun"
},
"repository": "https://github.com/orhun/Last-Commit",
"license": "GPL-3.0-or-later",
"keywords": [
"git",
"commit",
"status bar",
"last commit",
"status",
"log"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#5e8b9a",
"theme": "dark"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.33.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"typescript": "^3.8.3",
"vsce": "^1.78.0"
}
}