-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.json
More file actions
54 lines (54 loc) · 1.13 KB
/
info.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"id": "live-data-table",
"type": "plugin",
"title": "Live Data Table",
"description": "Real-time sortable table with Canvas sparklines, smart value formatting, search filtering, freeze/resume, column sorting, and auto-reconnect.",
"author": "Alex Spataru",
"version": "0.0.1",
"license": "MIT",
"category": "Visualization",
"screenshot": "screenshot.png",
"entry": "live_table.py",
"runtime": "python3",
"terminal": false,
"grpc": true,
"dependencies": [
{
"name": "Python 3",
"executables": ["python3", "python"],
"url": "https://www.python.org/downloads/"
}
],
"files": [
"info.json",
"live_table.py",
"grpc_client.py",
"serialstudio_pb2.py",
"serialstudio_pb2_grpc.py",
"icon.svg"
],
"platforms": {
"darwin/*": {
"entry": "run.sh",
"runtime": "",
"files": [
"run.sh"
]
},
"linux/*": {
"entry": "run.sh",
"runtime": "",
"files": [
"run.sh"
]
},
"windows/*": {
"entry": "run.cmd",
"runtime": "",
"files": [
"run.cmd"
]
}
},
"icon": "icon.svg"
}