-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (44 loc) · 1.05 KB
/
manifest.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
{
"name": "NoShell",
"version": "0.0.5",
"displayname": "NoShell",
"description": "NOOXY Shell. Default NoService Shell service implementation.",
"Authors": ["NOOXY", "noowyee"],
"git_url": "https://github.com/NOOXY-Research/NoShell",
"DatabaseAPI": true,
"implementation_api": true,
"dependencies": {
"node_packages" : {
},
"services" : {
"NoServiceManager": "0.0.3",
"NoUser": "0.0.0",
"NoActivity": "0.0.0"
}
},
"servicefunctions": {
"sendC": {
"displayname": "send command.",
"description": "Send a command to shell service and return result.",
"secure": true,
"protocol": {
"call": {
"c": "Plaintext of the command."
},
"return": {
"r": "Returned result."
}
}
},
"welcome": {
"displayname": "Welcome message",
"description": "Show welcome message from shell service.",
"secure": false,
"protocol": {
"call": {
},
"return": "The welcome message."
}
}
}
}