-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "signalk-logviewer",
"version": "0.3.1",
"description": "SignalK Plugin to view and filter server logs",
"main": "index.js",
"keywords": [
"signalk-node-server-plugin",
"signalk-webapp",
"signalk-category-utility"
],
"author": "Dirk Wahrheit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dirkwa/signalk-logviewer.git"
},
"bugs": {
"url": "https://github.com/dirkwa/log-viewer/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"public/"
],
"signalk": {
"appIcon": "images/logviewer.png",
"displayName": "Log Viewer",
"appstore": {
"displayName": "Log Viewer",
"categories": ["utilities"],
"author": "Dirk Wahrheit",
"description": "View and filter SignalK server logs with grep-like functionality"
},
"webapp": {
"name": "Log Viewer",
"description": "View and filter SignalK server logs",
"location": "/plugins/signalk-logviewer/"
}
},
"scripts": {
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {}
}