-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
40 lines (40 loc) · 1.06 KB
/
extension.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
{
"displayName": "Friendly Helpers",
"name": "friendly-helpers-feldm",
"platform": "web",
"version": "1.0.10",
"description": "Provides useful features that aren't available out of the box. Such as synchronous custom code.",
"author": {
"name": "FELD M"
},
"viewBasePath": "src/view/",
"actions": [
{
"displayName": "Synchronous Code",
"name": "synchronous-code",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {}
},
"libPath": "src/lib/actions/synchronousCode.js",
"viewPath": "actions/synchronousCode.html",
"transforms": [
{
"type": "function",
"propertyPath": "callback",
"parameters": ["event", "target", "Promise"]
}
]
}
],
"iconPath": "src/view/assets/icon.svg",
"configuration": {
"viewPath": "configuration/configuration.html",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {}
}
}
}