forked from kleber-swf/vscode-unity-code-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1009 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "unity-code-snippets",
"displayName": "Unity Code Snippets",
"description": "All snippets you need for Unity3D development",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/kleber-swf/vscode-unity-code-snippets"
},
"author": {
"name": "Kleber Silva",
"email": "[email protected]",
"url": "http://kleber-swf.com"
},
"bugs": {
"url": "https://github.com/kleber-swf/vscode-unity-code-snippets",
"email": "[email protected]"
},
"publisher": "kleber-swf",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Snippets"
],
"keywords": [
"unity",
"monobehaviour",
"csharp",
"gamedev",
"snippet"
],
"homepage": "https://github.com/kleber-swf/vscode-unity-code-snippets",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#b5bcca",
"theme": "light"
},
"contributes": {
"snippets": [
{
"language": "csharp",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"build": "vsce package"
}
}