-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vscode-dgraph-snippets",
"displayName": "vscode-dgraph-snippets",
"version": "0.0.3",
"homepage": "https://dgraph.io",
"author": "MichelDiz",
"publisher": "MichelDiz",
"license": "MIT",
"description": "Dgraph snippets for RDF, JSON-Dgraph and Queries. Also language support.",
"engines": { "vscode": "*" },
"icon": "images/logo.png",
"scripts":{
"pack": "vsce package"
},
"galleryBanner": {
"color": "#0c121c",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichelDiz/vscode-dgraph-snippets.git"
},
"categories": [ "Snippets", "Programming Languages" ],
"keywords": [ "snippets", "dgraph", "graphDB" ],
"bugs": {
"url": "https://github.com/MichelDiz/vscode-dgraph-snippets/issues"
},
"contributes": {
"snippets": [
{
"language": "schema",
"path": "./snippets/schema.json"
},
{
"language": "xml",
"path": "./snippets/rdf.json"
},
{
"language": "javascript",
"path": "./snippets/dql.json"
},
{
"language": "javascript",
"path": "./snippets/rdf.json"
},
{
"language": "javascript",
"path": "./snippets/json.json"
},
{
"language": "json",
"path": "./snippets/json.json"
},
{
"language": "typescript",
"path": "./snippets/dql.json"
},
{
"language": "typescript",
"path": "./snippets/rdf.json"
},
{
"language": "typescript",
"path": "./snippets/json.json"
}
],
"languages": [
{
"id": "schema",
"aliases": [
"Dgraph schema",
"Schema",
"SCHEMA"
],
"extensions": [
".schema"
],
"configuration": "./schema/language-configuration.json"
}
],
"grammars": [{
"language": "schema",
"scopeName": "source.schema",
"path": "./schema/syntaxes/schema.tmLanguage.json"
}]
}
}