forked from benemohamed/codeigniter4-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 894 Bytes
/
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
{
"name": "codeigniter4-snippets",
"displayName": "codeigniter4 snippets",
"description": "codeigniter4 snippets",
"version": "0.0.2",
"icon": "assets/logo.jpg",
"publisher": "benemohamed",
"engines": {
"vscode": "^1.44.0"
},
"keywords": [
"codeigniter4",
"snippets",
"php"
],
"galleryBanner": {
"color": "#549BFF",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/benemohamed/codeigniter4-snippets.git"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"build": "vsce package -o benemohamed.codeigniter4-snippets-$npm_package_version.vsix"
}
}