-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.54 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
{
"name": "elementor-snippets",
"displayName": "Elementor Snippets & Autocompletions",
"description": "Code snippets to build Elementor Plugin widgets in WordPress",
"version": "0.2.2",
"engines": {
"vscode": "^1.18.0"
},
"publisher": "laurencebahiirwa",
"author": {
"name": "Laurence Bahiirwa"
},
"license": "MIT",
"homepage": "https://github.com/bahiirwa/elementor-snippets",
"repository": {
"type": "git",
"url": "https://github.com/bahiirwa/elementor-snippets"
},
"bugs": {
"url": "https://github.com/bahiirwa/elementor-snippets/issues"
},
"icon": "images/elementor-site-logo.webp",
"keywords": [
"WordPress",
"Elementor",
"Elementor Widgets",
"Widgets",
"Elementor Controls",
"Controls",
"Page Builder"
],
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/main-class.json"
},
{
"language": "php",
"path": "./snippets/controls.json"
},
{
"language": "js",
"path": "./snippets/hooks/js.json"
},
{
"language": "php",
"path": "./snippets/hooks/php.json"
},
{
"language": "php",
"path": "./snippets/categories.json"
},
{
"language": "php",
"path": "./snippets/functions.json"
}
]
}
}