-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
72 lines (72 loc) · 2.26 KB
/
plugin.json
File metadata and controls
72 lines (72 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "workflow-plugin-product-capture",
"version": "0.1.11",
"description": "Product URL capture provider for workflow-compute",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"private": false,
"minEngineVersion": "0.57.4",
"keywords": [
"product-capture",
"workflow-compute",
"amazon",
"wishlist"
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-product-capture",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-product-capture",
"capabilities": {
"configProvider": false,
"moduleTypes": [],
"stepTypes": ["step.product_capture"],
"triggerTypes": [],
"cliCommands": [
{
"name": "product-capture",
"description": "Validate and inspect product capture provider requests",
"flags_passthrough": true,
"subcommands": [
{
"name": "probe",
"description": "Report provider capability status"
}
]
}
]
},
"contracts": [
{
"id": "product-capture.browser.v1",
"path": "contracts/product-capture-provider.json",
"schema": "schemas/product-capture-provider.schema.json"
}
],
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-product-capture/releases/download/v0.1.11/workflow-plugin-product-capture-linux-amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-product-capture/releases/download/v0.1.11/workflow-plugin-product-capture-linux-arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-product-capture/releases/download/v0.1.11/workflow-plugin-product-capture-darwin-amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-product-capture/releases/download/v0.1.11/workflow-plugin-product-capture-darwin-arm64.tar.gz"
},
{
"os": "windows",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-product-capture/releases/download/v0.1.11/workflow-plugin-product-capture-windows-amd64.tar.gz"
}
]
}