-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "odoo-snippets",
"displayName": "Odoo Code Snippets",
"description": "This snippets can help you to develop Odoo modules faster and with no Typing Errors.",
"version": "2.3.0",
"license": "SEE LICENSE IN LICENSE",
"publisher": "mstuttgart",
"author": {
"name": "Michell Stuttgart",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.20.0"
},
"icon": "images/icon.png",
"galleryBanner": {
"theme": "light"
},
"categories": [
"Snippets"
],
"keywords": [
"odoo",
"snippets",
"python",
"xml",
"csv"
],
"bugs": {
"url": "https://github.com/mstuttgart/vscode-odoo-snippets/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mstuttgart/vscode-odoo-snippets"
},
"contributes": {
"snippets": [
{
"language": "python",
"path": "./snippets/python.json"
},
{
"language": "xml",
"path": "./snippets/xml.json"
},
{
"language": "csv",
"path": "./snippets/csv.json"
}
]
}
}