-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
37 lines (37 loc) · 1.15 KB
/
arvis-workflow.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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"category": "Productivity",
"creator": "Sindre Sorhus",
"name": "arvis-npms",
"readme": "",
"enabled": true,
"version": "0.0.4",
"webAddress": "https://github.com/jopemachine/arvis-npms",
"description": "Arvis workflow to search for npm packages with npms.io",
"defaultIcon": "icon.png",
"commands": [
{
"type": "scriptFilter",
"command": "npm",
"title": "Search for npm packages",
"subtitle": "",
"scriptFilter": "node index.js '{query}'",
"runningSubtext": "Searching...",
"withspace": true,
"argType": "required",
"actions": [
{
"modifiers": "normal",
"type": "open",
"target": "{query}"
},
{
"modifiers": "ctrl",
"type": "clipboard",
"text": "{query}"
}
]
}
],
"latest": "0.0.3"
}