forked from twitter-forks/vscode-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "vscode-graphql",
"author": "Stephen Wan <[email protected]>",
"license": "MIT",
"repository": "https://github.com/stephen/vscode-graphql.git",
"displayName": "GraphQL Language Support",
"description": "GraphQL autocomplete, diagnostics, go to definition, and syntax highlighting.",
"version": "0.1.7",
"publisher": "stpn",
"engines": {
"vscode": "^1.18.0"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"watch:compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"categories": ["Languages"],
"contributes": {
"configuration": {
"title": "GraphQL Configuration",
"properties": {
"graphql.useLanguageServer": {
"type": "boolean",
"default": false,
"description": "Use the graphql-language-service to provide autocomplete, go to definition, and diagnostics. Requires a .graphqlconfig file."
}
}
},
"languages": [
{
"id": "graphql",
"aliases": ["GraphQL", "graphql"],
"extensions": [".graphql"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "graphql",
"scopeName": "source.graphql",
"path": "./syntaxes/graphql.tmLanguage.json"
}
]
},
"activationEvents": ["onLanguage:graphql"],
"main": "./bin/client/extension",
"dependencies": {
"babel-polyfill": "^6.26.0",
"graphql": "^0.12.3 || ^0.11.7",
"graphql-language-service-server": "^1.0.18",
"vscode": "^1.1.10",
"vscode-languageclient": "^3.5.0",
"vscode-languageserver": "^3.5.0"
},
"devDependencies": {
"@types/graphql": "^0.11.7",
"@types/node": "^8.5.2",
"prettier": "^1.5.3"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#171E26",
"theme": "dark"
}
}