forked from graphql/vscode-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 4.17 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
{
"name": "vscode-graphql",
"version": "0.2.28",
"preview": true,
"private": false,
"license": "MIT",
"displayName": "GraphQL",
"keywords": [
"multi-root ready"
],
"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:**/.graphqlconfig",
"workspaceContains:**/.graphqlconfig.yml",
"workspaceContains:**/.graphqlconfig.yaml"
],
"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"
}
}
},
"commands": [
{
"command": "extension.isDebugging",
"title": "VSCode GraphQL - Is Debugging?"
},
{
"command": "extension.contentProvider",
"title": "Execute GraphQL Operations"
}
],
"typescriptServerPlugins": [
{
"name": "@divyenduz/ts-graphql-plugin"
}
]
},
"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": "1.0.1",
"@types/dotenv": "6.1.1",
"@types/graphql": "14.5.0",
"@types/mocha": "5.2.7",
"@types/node": "12.12.34",
"@types/ws": "6.0.4",
"tslint": "5.20.1",
"typescript": "3.8.3",
"vsce": "1.75.0",
"vscode": "1.1.36"
},
"dependencies": {
"@divyenduz/ts-graphql-plugin": "0.1.0",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"apollo-link": "1.2.13",
"apollo-link-http": "1.5.16",
"apollo-link-ws": "1.0.19",
"babel-polyfill": "6.26.0",
"capitalize": "1.0.0",
"dotenv": "6.2.0",
"graphql": "15.0.x",
"graphql-config": "2.2.2",
"graphql-config-extension-prisma": "0.3.0",
"graphql-language-service-server": "2.3.3",
"graphql-tag": "^2.10.3",
"subscriptions-transport-ws": "0.9.16",
"vscode-languageclient": "5.2.1",
"ws": "^7.2.3"
}
}