-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "graphql-language-service-cli",
"version": "3.5.0",
"description": "An interface for building GraphQL language services for IDEs",
"contributors": [
"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-cli"
},
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-cli#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:language-service-cli"
},
"bin": {
"graphql-lsp": "./bin/graphql.js"
},
"license": "MIT",
"files": [
"bin",
"dist",
"src"
],
"scripts": {
"test": "vitest"
},
"keywords": [
"graphql",
"graphql-language-service",
"graphql-language-service-cli",
"language server",
"LSP"
],
"peerDependencies": {
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@types/yargs": "16.0.5",
"graphql-language-service": "^5.3.0",
"graphql-language-service-server": "^2.14.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"graphql": "^16.9.0"
}
}