-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.4 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.4 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "loglighter",
"displayName": "LogLighter",
"description": "Expression-based line highlighting for log files",
"icon": "resources/loglighter_icon_128x128.png",
"version": "0.2.0",
"publisher": "stdout-se",
"repository": {
"type": "git",
"url": "https://github.com/stdout-se/LogLighter.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:loglighter.view"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "loglighter",
"title": "LogLighter",
"icon": "resources/icon.svg"
}
]
},
"views": {
"loglighter": [
{
"type": "webview",
"id": "loglighter.view",
"name": "Log Highlight"
}
]
},
"configuration": {
"title": "LogLighter",
"properties": {
"loglighter.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable line highlighting. When disabled, no decorations are applied."
},
"loglighter.filePattern": {
"type": "string",
"default": "*.log",
"description": "Glob pattern for which files to treat as log files (e.g. *.log, **/logs/*.log)"
},
"loglighter.profiling": {
"type": "boolean",
"default": false,
"description": "When true, log timing data to the LogLighter output channel to profile tab load and render. Turn off when not debugging."
},
"loglighter.highlightInOverviewRuler": {
"type": "boolean",
"default": true,
"description": "When enabled, show highlight colors in the overview ruler (the strip next to the minimap). The minimap itself does not support extension decorations in VS Code."
},
"loglighter.expressions": {
"type": "array",
"default": [],
"description": "List of expressions: each has id (optional), pattern (regex), foreground, background (hex colors)",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"pattern": {
"type": "string"
},
"foreground": {
"type": "string"
},
"background": {
"type": "string"
},
"enabled": {
"type": "boolean",
"description": "When false, this expression is not used for highlighting."
}
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile && npm run bundle",
"compile": "tsc -p ./",
"bundle": "esbuild src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=node14",
"watch": "tsc -watch -p ./",
"test": "npm run compile && mocha \"out/test/**/*.test.js\"",
"lint": "eslint src --ext ts"
},
"dependencies": {
"minimatch": "^10.2.4"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/vscode": "^1.74.0",
"esbuild": "^0.27.4",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.3",
"glob": "^12.0.0"
}
}