-
-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.3 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@graphql-inspector/ci",
"version": "5.0.6",
"type": "module",
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
"repository": {
"type": "git",
"url": "graphql-hive/graphql-inspector",
"directory": "packages/ci"
},
"author": {
"name": "Kamil Kisiela",
"email": "kamil.kisiela@gmail.com",
"url": "https://github.com/kamilkisiela"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"graphql-inspector": "dist/cjs/index.js"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.cts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./*": {
"require": {
"types": "./dist/typings/*.d.cts",
"default": "./dist/cjs/*.js"
},
"import": {
"types": "./dist/typings/*.d.ts",
"default": "./dist/esm/*.js"
},
"default": {
"types": "./dist/typings/*.d.ts",
"default": "./dist/esm/*.js"
}
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
"keywords": [
"graphql",
"graphql-inspector",
"tools",
"cli",
"ci"
],
"scripts": {
"build": "bob build",
"clean": "rm -rf dist/",
"prebuild": "pnpm clean",
"prepack": "bob prepack",
"prepublishOnly": "pnpm build",
"test": "vitest ."
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-inspector/commands": "workspace:*",
"@graphql-inspector/config": "workspace:*",
"@graphql-inspector/loaders": "workspace:*",
"@graphql-inspector/logger": "workspace:*",
"tslib": "2.6.2",
"yargs": "18.0.0"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"sideEffects": false,
"buildOptions": {
"bin": {
"graphql-inspector": {
"input": "src/index.ts"
}
}
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}