UNPKG

1.06 kBJSONView Raw
1{
2 "name": "@graphql-inspector/core",
3 "version": "3.1.2",
4 "description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
5 "sideEffects": false,
6 "peerDependencies": {
7 "graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
8 },
9 "dependencies": {
10 "dependency-graph": "0.11.0",
11 "object-inspect": "1.10.3",
12 "tslib": "^2.0.0"
13 },
14 "repository": {
15 "type": "git",
16 "url": "kamilkisiela/graphql-inspector",
17 "directory": "packages/core"
18 },
19 "keywords": [
20 "graphql",
21 "graphql-inspector",
22 "tools"
23 ],
24 "author": {
25 "name": "Kamil Kisiela",
26 "email": "kamil.kisiela@gmail.com",
27 "url": "https://github.com/kamilkisiela"
28 },
29 "license": "MIT",
30 "main": "index.js",
31 "module": "index.mjs",
32 "typings": "index.d.ts",
33 "typescript": {
34 "definition": "index.d.ts"
35 },
36 "exports": {
37 ".": {
38 "require": "./index.js",
39 "import": "./index.mjs"
40 },
41 "./*": {
42 "require": "./*.js",
43 "import": "./*.mjs"
44 }
45 }
46}