This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
206 lines (206 loc) · 5.54 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
{
"name": "vscode-graphql",
"version": "0.3.1",
"preview": true,
"private": false,
"license": "MIT",
"displayName": "GraphQL",
"keywords": [
"multi-root ready",
"graphql",
"lsp",
"graph"
],
"description": "GraphQL extension for VSCode adds syntax highlighting, validation, and language features like go to definition, hover information and autocompletion for graphql projects. This extension also works with queries annotated with gql tag.",
"icon": "assets/images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/prisma-labs/vscode-graphql"
},
"homepage": "https://github.com/prisma-labs/vscode-graphql/blob/master/README.md",
"galleryBanner": {
"color": "#032539",
"theme": "dark"
},
"publisher": "Prisma",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Other"
],
"activationEvents": [
"onCommand:extension.isDebugging",
"onCommand:extension.contentProvider",
"onLanguage:graphql",
"workspaceContains:**/.graphqlrc",
"workspaceContains:**/.graphqlrc.{json,yaml,yml,js}",
"workspaceContains:**/graphql.config.{json,yaml,yml,js}"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "graphql",
"extensions": [
".gql",
".graphql"
],
"aliases": [
"GraphQL",
"graphql"
],
"configuration": "./language/language-configuration.json"
}
],
"grammars": [
{
"language": "graphql",
"path": "./grammars/graphql.json",
"scopeName": "source.graphql"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.js.jsx",
"source.tsx",
"source.vue"
],
"scopeName": "inline.graphql",
"path": "./grammars/graphql.js.json",
"embeddedLanguages": {
"meta.embedded.block.graphql": "graphql"
}
}
],
"snippets": [
{
"language": "graphql",
"path": "./snippets/graphql.json"
}
],
"configuration": {
"title": "VSCode GraphQL",
"properties": {
"vscode-graphql.debug": {
"type": [
"boolean",
"null"
],
"default": false,
"description": "Enable debug logs"
},
"vscode-graphql.trace.server": {
"type": [
"string"
],
"default": "off",
"description": "Enable tracing for language server"
},
"vscode-graphql.showExecCodelens": {
"type": [
"boolean"
],
"description": "Show codelens to execute operations inline",
"default": true
},
"graphql-config.load.rootDir": {
"type": [
"string"
],
"description": "Base dir for graphql config loadConfig()",
"default": null
},
"graphql-config.load.filePath": {
"type": [
"string"
],
"description": "filePath for graphql config loadConfig()",
"default": null
},
"graphql-config.load.legacy": {
"type": [
"boolean"
],
"description": "legacy mode for graphql config v2 config",
"default": null
},
"graphql-config.load.configName": {
"type": [
"string"
],
"description": "optional <configName>.config.js instead of default `graphql`",
"default": null
}
}
},
"commands": [
{
"command": "extension.isDebugging",
"title": "VSCode GraphQL - Is Debugging?"
},
{
"command": "extension.restart",
"title": "VSCode GraphQL - Restart"
},
{
"command": "extension.contentProvider",
"title": "Execute GraphQL Operations"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vsce:package": "vsce package",
"env:source": "export $(cat .envrc | xargs)",
"vsce:publish": "sh publish.sh",
"upgrade-interactive": "npx npm-check -u"
},
"devDependencies": {
"@types/capitalize": "^2.0.0",
"@types/dotenv": "^8.2.0",
"@types/mocha": "5.2.7",
"@types/node": "12.12.34",
"@types/ws": "6.0.4",
"tslint": "5.20.1",
"typescript": "3.9.7",
"vsce": "^1.78.0",
"vscode": "^1.1.37"
},
"dependencies": {
"@graphql-tools/url-loader": "^6.0.19-alpha-edce0415.0",
"@graphql-tools/wrap": "^6.0.19-alpha-edce0415.0",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "1.5.17",
"apollo-link-ws": "1.0.20",
"babel-polyfill": "6.26.0",
"capitalize": "^2.0.3",
"dotenv": "^8.2.0",
"graphql": "^15.3.0",
"graphql-config": "^3.0.3",
"graphql-language-service-server": "^2.5.0-alpha.4",
"graphql-tag": "^2.11.0",
"node-fetch": "^2.6.0",
"ovsx": "0.1.0-next.dacd2fd",
"subscriptions-transport-ws": "^0.9.17",
"vscode-languageclient": "5.2.1",
"ws": "^7.3.1"
},
"resolutions": {
"graphql": "^15.3.0",
"graphql-config": "^3.0.3",
"@graphql-tools/wrap": "6.0.19-alpha-edce0415.0",
"@graphql-tools/url-loader": "6.0.19-alpha-edce0415.0"
}
}