-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "vscode-cypher-query-language-tools",
"displayName": "Cypher Query Language Tools for Neoj",
"description": "Syntax highlighting, code completion, and related tools for Neo4j's Cypher Query Language with support for the Awesome Procedures on Cypher (APOC), Graph Algorithms, and GraphQL libraries.",
"version": "0.1.1",
"publisher": "AnthonyJGatlin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agatlin/vscode-cypher-tools"
},
"icon": "assets/logo.png",
"galleryBanner": {
"color": "#292b31",
"theme": "dark"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages", "Programming Languages", "Snippets", "Linters", "Other"
],
"contributes": {
"languages": [
{
"id": "cypher",
"aliases": [
"Cypher Query Language",
"Cypher QL",
"cypher"
],
"extensions": [
".cql",
".cyp",
".cypher"
],
"configuration": "./cypher.configuration.json"
}
],
"grammars": [
{
"language": "cypher",
"scopeName": "source.cypher",
"path": "./syntaxes/cypher-language.json"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx",
"source.python"
],
"scopeName": "cypher",
"path": "./syntaxes/cypher-embedded.json"
}
]
},
"dependencies": {},
"devDependencies": {
"vsce": "*"
}
}