-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
{
"name": "better-terminal-logs",
"displayName": "Better Terminal Logs",
"description": "View terminal logs in a collapsible, organized webview panel with real-time updates",
"version": "0.0.5",
"icon": "assets/logo.webp",
"publisher": "dmytro-ivashchuk",
"engines": {
"vscode": "^1.93.0"
},
"homepage": "https://github.com/DimaIvashchuk/better-terminal-logs-vscode-extension/blob/main/README.md",
"bugs": {
"url": "https://github.com/DimaIvashchuk/better-terminal-logs-vscode-extension/issues",
"email": "dmytro.ivashchuk.s@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/DimaIvashchuk/better-terminal-logs-vscode-extension.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "better-terminal-logs.showBetterLogs",
"title": "Better Terminal Logs: Show Better Logs"
}
],
"keybindings": [
{
"command": "better-terminal-logs.showBetterLogs",
"key": "cmd+shift+l",
"mac": "cmd+shift+l",
"win": "ctrl+shift+l",
"linux": "ctrl+shift+l"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && npm run copy-webview",
"copy-webview": "node -e \"require('fs').mkdirSync('out/webview', {recursive: true})\" && node -e \"require('fs').copyFileSync('src/webview/index.html', 'out/webview/index.html')\"",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vscode/vsce": "^3.7.0",
"electron-rebuild": "^3.2.9",
"eslint": "^9.34.0",
"typescript": "^5.9.2"
}
}