forked from nikorummukainen/blender-python-code-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1005 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
{
"name": "blender-python-code-templates",
"displayName": "Blender Python Code Templates",
"description": "Templates for Blender Addon development. Templates translated are from Blender python templates and from Jacques Lucke's Code Autocomplete addon with my own additions.",
"version": "0.9.4",
"publisher": "blenderfreetimeprojects",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/nikorummukainen/blender-python-code-templates"
},
"bugs": {
"url": "https://github.com/nikorummukainen/blender-python-code-templates/issues"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "python",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"table": "node helpers/documentation_table.js"
}
}