forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
{
"name": "graphql-language-service-server",
"version": "2.12.0",
"description": "Server process backing the GraphQL Language Service",
"contributors": [
"Greg Hurrell <greg@hurrell.net> (https://greg.hurrell.net/)",
"Hyohyeon Jeong <asiandrummer@fb.com>",
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)"
],
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphiql",
"directory": "packages/graphql-language-service-server"
},
"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:lsp-server"
},
"license": "MIT",
"files": [
"dist",
"esm",
"src"
],
"keywords": [
"graphql",
"language server",
"LSP",
"vue",
"svelte",
"typescript"
],
"main": "dist/index.js",
"module": "esm/index.js",
"typings": "esm/index.d.ts",
"peerDependencies": {
"graphql": "^15.5.0 || ^16.0.0"
},
"COMMENT": "please do not remove depenencies without thorough testing. many dependencies are not imported directly, as they are peer dependencies",
"dependencies": {
"@astrojs/compiler": "^2.5.0",
"@babel/parser": "^7.23.6",
"@babel/types": "^7.23.5",
"@graphql-tools/code-file-loader": "8.0.3",
"@vue/compiler-sfc": "^3.4.5",
"astrojs-compiler-sync": "^0.3.5",
"cosmiconfig-toml-loader": "^1.0.0",
"dotenv": "10.0.0",
"fast-glob": "^3.2.7",
"glob": "^7.2.0",
"graphql-config": "5.0.3",
"graphql-language-service": "^5.2.0",
"mkdirp": "^1.0.4",
"node-abort-controller": "^3.0.1",
"nullthrows": "^1.0.0",
"source-map-js": "1.0.2",
"svelte": "^4.1.1",
"svelte2tsx": "^0.7.0",
"vscode-jsonrpc": "^8.0.1",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-types": "^3.17.2",
"vscode-uri": "^3.0.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mkdirp": "^1.0.1",
"cross-env": "^7.0.2",
"graphql": "^16.8.1",
"mock-fs": "^5.2.0"
}
}