forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.11 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
{
"name": "graphql-language-service-server",
"version": "2.14.0",
"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": {
"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": "^16.0.0"
},
"COMMENT": "please do not remove dependencies without thorough testing. many dependencies are not imported directly, as they are peer dependencies",
"dependencies": {
"@astrojs/compiler": "^2.10.1",
"@babel/parser": "^7.23.6",
"@babel/types": "^7.23.5",
"@graphql-tools/code-file-loader": "8.0.3",
"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.3.0",
"lru-cache": "^10.2.0",
"mkdirp": "^1.0.4",
"node-abort-controller": "^3.0.1",
"nullthrows": "^1.0.0",
"source-map-js": "1.0.2",
"svelte": "^4.2.19",
"svelte2tsx": "^0.7.0",
"typescript": "^5.3.3",
"vscode-jsonrpc": "^8.0.1",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-types": "^3.17.2",
"vscode-uri": "^3.0.2",
"vue": "^3.2.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mkdirp": "^1.0.1",
"@types/mock-fs": "^4.13.4",
"cross-env": "^7.0.2",
"debounce-promise": "^3.1.2",
"graphql": "^16.9.0",
"mock-fs": "^5.2.0"
}
}