-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "codemirror-graphql",
"version": "2.1.1",
"description": "GraphQL mode and helpers for CodeMirror.",
"contributors": [
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)",
"Angel Gomez Salazar <[email protected]>"
],
"homepage": "https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme",
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphiql",
"directory": "packages/codemirror-graphql"
},
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:codemirror-graphql"
},
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"files": [
"src",
"cm6-legacy",
"esm",
"utils",
"variables",
"results",
"/*.js",
"/*.js.flow",
"/*.js.map",
"/*.d.ts",
"/*.d.ts.map",
"!babel.config.js",
"!jest.config.js"
],
"scripts": {
"build": "node ../../scripts/renameFileExtensions.js './esm/{**,!**/__tests__/}/*.js' . .esm.js"
},
"peerDependencies": {
"@codemirror/language": "6.0.0",
"codemirror": "^5.65.3",
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0"
},
"// TEMPORARILY PINNED until we fix graphql 15 support": "",
"dependencies": {
"@types/codemirror": "^0.0.90",
"graphql-language-service": "5.3.0"
},
"devDependencies": {
"@codemirror/language": "^6.0.0",
"codemirror": "^5.65.3",
"cross-env": "^7.0.2",
"graphql": "^16.9.0",
"rimraf": "^3.0.2",
"sane": "2.0.0"
}
}