-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (69 loc) · 2.24 KB
/
package.json
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
{
"APPID": {
"GUID": "6d5a9630-9ce4-4aa5-b093-e1267128d858",
"TAGURI": "[email protected],2023-07-06:project:chromeurltitle",
"NAME": "chromeurltitle",
"TITLE": "Chrome URL & Title Retrieval",
"TAGS": "webbrowser chrome extension chromeextension",
"DESC": "a chrome extension & local Python listener for getting a URL and title out of the web browser"
},
"PACKAGE": {
"DISTRIBUTIONNAME": "bookmarkreceiver",
"VERSION": "1.0.0",
"CLASSIFIERS": [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
"DEPENDENCIES": []
},
"CHASSIS2023": {
"LOGRINGLEN": 20,
"SESSIONFILELOC": "SM",
"SESSIONFILENAME": "bookmarkreceiver_session.json",
"EXECUTIONTYPE": "WEBSERVER"
},
"FACTORY2023": {
"PROJECTID": "0103"
},
"GITHUB": {"NAME": "chromeurltitle"},
"MODULES": [],
"RESOURCES": [],
"SNOWFLAKES": [],
"CONFIG": [
{"NAME": "outputdir",
"TITLE": "Output Directory",
"DESC": "full folder path, to a folder that received links will be output to",
"TYPE": "PATH",
"DEFAULT": "",
"OPTIONS": [],
"FLAGS": "req"},
{"NAME": "outputfile",
"TITLE": "Output File",
"DESC": "name of the output file, that will contain the JSON link data",
"TYPE": "PATH",
"DEFAULT": "LINK.json",
"OPTIONS": [],
"FLAGS": "req"},
{"NAME": "lockstephostip",
"TITLE": "Lockstep Host IP Address",
"DESC": "IP address for the lockstep host; received entries are output one at a time",
"TYPE": "STR",
"DEFAULT": "127.0.0.1",
"OPTIONS": [],
"FLAGS": ""},
{"NAME": "lockstephostport",
"TITLE": "Lockstep Host Port",
"DESC": "Port for the lockstep host; received entries are output one at a time",
"TYPE": "INT",
"DEFAULT": 9999,
"$comment": "this is wrong; fix 9999 to the right default value",
"FLAGS": ""},
{"NAME": "threaddelay",
"TITLE": "Thread Delay",
"DESC": "How long the thread waits, in deciseconds, before checking if it is time to post a link",
"TYPE": "INT",
"DEFAULT": 5,
"FLAGS": "req"}
]
}