-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "logfetcher",
"displayName": "LogFetcher | Fetch Log Data with Ease",
"description": "project to fetch logs from server",
"version": "0.0.5",
"publisher": "shashanksirmour",
"icon": "images/icon.png",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ShashankSirmour/logfetcher"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other",
"Testing"
],
"activationEvents": [
"onCommand:logfetcher.fetchFile",
"onCommand:logfetcher.lastFile"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "logfetcher.fetchFile",
"title": "LogFetcher | fetch log"
},
{
"command": "logfetcher.lastFile",
"title": "LogFetcher | last log fetcher"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^12.12.0",
"@types/ssh2-sftp-client": "^7.0.1",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"dependencies": {
"fs-extra": "^10.1.0",
"ssh2-sftp-client": "^8.0.0"
}
}