forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "graphql-language-service",
"version": "3.1.4",
"description": "The official, runtime independent Language Service for GraphQL",
"contributors": [
"GraphQL Contributors"
],
"repository": "http://github.com/graphql/graphiql",
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:languageservice"
},
"license": "MIT",
"files": [
"dist",
"esm"
],
"keywords": [
"graphql",
"language service",
"LSP"
],
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"bin": {
"graphql": "./dist/temp-bin.js"
},
"peerDependencies": {
"graphql": ">= v14.5.0 <= 15.5.0"
},
"dependencies": {
"graphql-language-service-interface": "^2.8.2",
"graphql-language-service-types": "^1.8.0"
},
"devDependencies": {
"graphql": "experimental-stream-defer"
}
}