forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "graphql-language-service",
"version": "5.1.7",
"description": "The official, runtime independent Language Service for GraphQL",
"contributors": [
"GraphQL Contributors"
],
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphiql",
"directory": "packages/graphql-language-service"
},
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:graphql-language-service"
},
"license": "MIT",
"files": [
"dist",
"esm",
"src"
],
"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": "^15.5.0 || ^16.0.0"
},
"dependencies": {
"nullthrows": "^1.0.0",
"vscode-languageserver-types": "^3.17.1"
},
"devDependencies": {
"@types/benchmark": "^1.0.33",
"@types/json-schema": "7.0.9",
"@types/picomatch": "^2.3.0",
"benchmark": "^2.1.4",
"graphql": "^16.4.0",
"graphql-config": "5.0.2",
"lodash": "^4.17.15",
"platform": "^1.3.5",
"ts-node": "^8.10.2",
"typescript": "^4.6.3"
},
"scripts": {
"benchmark": "ts-node benchmark/index.ts"
}
}