-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "unity-dots-snippets",
"displayName": "Unity DOTS Snippets",
"description": "Snippets for Unity DOTS",
"version": "0.0.2",
"publisher": "diegosarmentero",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/diegosarmentero/vscode-unity-dots/blob/master/README.md",
"keywords":
[
"unity 3d", "c#", "dots", "ecs", "unity dots", "unity ecs",
"unity", "unity3d", "unity 3d",
"c#", "c sharp", "csharp", "c-sharp", "cs",
"gamedev", "code", "script",
"unity code", "unity script"
],
"author":
{
"name": "Diego Sarmentero",
"url": "http://mindechoes.com"
},
"bugs": {
"url": "https://github.com/diegosarmentero/vscode-unity-dots/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/diegosarmentero/vscode-unity-dots"
},
"engines": {
"vscode": "^1.39.0"
},
"icon": "icon.png",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "csharp",
"path": "./snippets/snippets.json"
}
]
}
}