forked from Droggol/VscOdooSnippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "OdooSnippets",
"displayName": "Odoo Snippets",
"description": "Snippets for Odoo developer (Do Less, Get More).",
"version": "0.0.2",
"icon": "images/icon.png",
"publisher": "jigar-patel",
"engines": {
"vscode": "^1.34.0"
},
"galleryBanner": {
"color": "#875A7B",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Snippets"
],
"keywords": [
"odoo", "snippets", "python", "xml", "javascript"
],
"contributes": {
"snippets": [
{
"language": "python",
"path": "./snippets/python_snippets.json"
},
{
"language": "javascript",
"path": "./snippets/js_snippets.json"
},
{
"language": "xml",
"path": "./snippets/xml_snippets.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jat-odoo/VscOdooSnippets"
},
"bugs": {
"url": "https://github.com/jat-odoo/VscOdooSnippets/issues"
}
}