-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "vscode-joomla-4-snippets",
"displayName": "Joomla 4 and Joomla 5 Snippets for Visual Studio Code",
"description": "Snippets for Joomla 4 and Joomla 5.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/siddik-web/vscode-joomla-4-snippets.git"
},
"bugs": {
"url": "https://github.com/siddik-web/vscode-joomla-4-snippets/issues"
},
"homepage": "https://github.com/siddik-web/vscode-joomla-4-snippets#readme",
"publisher": "siddiqur",
"version": "0.0.7",
"icon": "icon.png",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "xml",
"path": "./snippets/xml.json"
},
{
"language": "php",
"path": "./snippets/php.json"
}
]
},
"scripts": {
"install": "vsce package; code --install-extension *.vsix",
"publish": "vsce publish"
}
}