-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.18 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.18 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
118
119
{
"name": "vscode-opentelemetry-viewer",
"displayName": "OpenTelemetry Log Viewer",
"description": "Simple grid viewer for reading open telemetry logs",
"publisher": "Tobias-Streng",
"license": "Apache-2.0",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/TobiStr/vscode-opentelemetry-viewer"
},
"bugs": {
"url": "https://github.com/TobiStr/vscode-opentelemetry-viewer/issues"
},
"homepage": "https://github.com/TobiStr/vscode-opentelemetry-viewer#readme",
"icon": "docs/icon.png",
"keywords": [
"open",
"telemetry",
"opentele",
"opentelemetry",
"logs",
"log",
"log viewer",
"jsonl",
"observability",
"json",
"json viewer"
],
"galleryBanner": {
"color": "#282c34",
"theme": "dark"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-opentelemetry-viewer.showLogs"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-opentelemetry-viewer.showLogs",
"title": "OpenTelemetry Viewer"
}
],
"menus": {
"editor/title": [
{
"when": "resourceExtname == .log || resourceExtname == .jsonl",
"command": "vscode-opentelemetry-viewer.showLogs",
"group": "navigation"
}
]
},
"configuration": {
"title": "OpenTelemetry Viewer",
"properties": {
"opentelemetryViewer.theme": {
"type": "string",
"enum": [
"auto",
"light",
"dark"
],
"default": "auto",
"description": "Theme for the OpenTelemetry viewer. 'auto' follows VS Code's theme, 'light' forces light theme, 'dark' forces dark theme."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "tsc -p ./",
"build:webview": "vite build",
"dev:webview": "vite",
"build": "npm run compile && npm run build:webview",
"watch": "tsc -w -p ./",
"compile-tests": "tsc -p ./",
"watch-tests": "tsc -p ./ -w",
"pretest": "npm run compile-tests && npm run lint",
"lint": "eslint src",
"test": "node ./dist/test/runTest.js",
"test:unit": "npm run compile-tests && mocha --ui tdd --timeout 10000 --colors dist/test/suite/*.test.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.30",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@types/sinon": "^17.0.4",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.3.4",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.3.2",
"eslint": "^9.23.0",
"jsdom": "^26.1.0",
"sinon": "^21.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vite": "^6.2.6"
},
"dependencies": {
"ag-grid-community": "^33.2.3",
"ag-grid-react": "^33.2.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vscode-opentelemetry-viewer": "file:"
}
}