forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "graphql-language-service-parser",
"version": "1.9.2",
"description": "An online parser for GraphQL for use in syntax-highlighters and code intelligence tools",
"contributors": [
"Greg Hurrell <[email protected]> (https://greg.hurrell.net/)",
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)"
],
"repository": "http://github.com/graphql/graphiql",
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-parser#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:language-parser"
},
"license": "MIT",
"files": [
"dist",
"esm"
],
"keywords": [
"graphql"
],
"main": "dist/index.js",
"module": "esm/index.js",
"typings": "dist/index.d.ts",
"peerDependencies": {
"graphql": ">= v14.5.0 <= 15.5.0"
},
"devDependencies": {
"@types/benchmark": "^1.0.33",
"benchmark": "^2.1.4",
"graphql": "experimental-stream-defer",
"lodash": "^4.17.15",
"platform": "^1.3.5",
"ts-node": "^8.10.2",
"typescript": "^4.1.3",
"vscode-languageserver-types": "^3.15.1"
},
"dependencies": {
"graphql-language-service-types": "^1.8.0"
},
"scripts": {
"benchmark": "ts-node benchmark/index.ts"
}
}