forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "graphql-language-service-server",
"version": "2.6.3",
"description": "Server process backing the GraphQL Language Service",
"contributors": [
"Greg Hurrell <[email protected]> (https://greg.hurrell.net/)",
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)"
],
"repository": "http://github.com/graphql/graphiql",
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-server#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:language-server"
},
"license": "MIT",
"files": [
"dist",
"esm"
],
"keywords": [
"graphql",
"language server",
"LSP"
],
"main": "dist/index.js",
"module": "esm/index.js",
"typings": "esm/index.d.ts",
"peerDependencies": {
"graphql": ">= v14.5.0 <= 15.5.0"
},
"dependencies": {
"@babel/parser": "^7.13.13",
"dotenv": "8.2.0",
"glob": "^7.1.2",
"graphql-config": "^3.0.2",
"graphql-language-service": "^3.1.2",
"graphql-language-service-utils": "^2.5.1",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"nullthrows": "^1.0.0",
"vscode-jsonrpc": "^5.0.1",
"vscode-languageserver": "^6.1.1"
},
"devDependencies": {
"@types/mkdirp": "^1.0.1",
"cross-env": "^7.0.2",
"graphql": "experimental-stream-defer"
}
}