-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
86 lines (86 loc) · 2.1 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
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
{
"name": "graphql-schema-diff",
"version": "3.0.0",
"description": "Returns the diff of two GraphQL schemas. Detects dangerous and breaking changes.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean --sourcemap --no-splitting",
"dev": "tsx src/cli",
"prepack": "npm run build",
"test": "jest",
"fmt": "prettier --write src/**"
},
"bin": {
"graphql-schema-diff": "./dist/cli.js"
},
"files": [
"dist/",
"npm-shrinkwrap.json"
],
"keywords": [
"graphql",
"schema",
"diff"
],
"author": "Fabian Schneider",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabsrc/graphql-schema-diff/issues"
},
"homepage": "https://github.com/fabsrc/graphql-schema-diff#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fabsrc/graphql-schema-diff.git"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^8.0.0",
"@graphql-tools/json-file-loader": "^8.0.0",
"@graphql-tools/load": "^8.0.0",
"@graphql-tools/url-loader": "^8.0.0",
"@graphql-tools/utils": "^10.0.5",
"@highlightjs/cdn-assets": "^11.8.0",
"chalk": "^4.1.2",
"diff2html": "^3.4.35",
"disparity": "^3.2.0",
"graphql": "^16.8.1",
"meow": "^9.0.0",
"node-fetch": "^2.6.11"
},
"devDependencies": {
"@types/hogan.js": "^3.0.1",
"@types/jest": "^28.1.8",
"@types/node": "^22.5.0",
"@types/node-fetch": "^2.6.4",
"jest": "^28.1.3",
"nock": "^13.3.1",
"prettier": "^3.1.1",
"ts-jest": "^28.0.8",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 20"
},
"jest": {
"roots": [
"src"
],
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true
}
}