-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.49 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@theguild/federation-composition",
"version": "0.14.2",
"type": "module",
"description": "Open Source Composition library for Apollo Federation",
"repository": {
"type": "git",
"url": "the-guild-org/federation"
},
"author": {
"email": "[email protected]",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.3"
},
"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"
}
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
"files": [
"dist"
],
"keywords": [
"graphql",
"federation",
"graphql-federation"
],
"scripts": {
"bench": "tsx ./benchmark.ts",
"build": "rimraf dist && bob build && bob check",
"compose": "tsx --expose-gc ./compose.ts",
"compose:apollo": "pnpm compose apollo",
"compose:debug": "DEBUG_COLORS=0 DEBUG=composition:* pnpm compose > guild.log",
"compose:inspect": "tsx --inspect-brk --expose-gc ./compose.ts",
"format": "prettier --write .",
"release": "pnpm build && changeset publish",
"test": "vitest --config ./vitest.config.js",
"typecheck": "tsc --noEmit --project tsconfig.build.json"
},
"peerDependencies": {
"graphql": "^16.0.0"
},
"dependencies": {
"constant-case": "^3.0.0",
"debug": "4.3.4",
"json5": "^2.2.0",
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"@apollo/composition": "2.6.2",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@theguild/prettier-config": "2.0.1",
"@types/debug": "4.1.12",
"@types/lodash.sortby": "4.7.9",
"@types/node": "20.6.0",
"@vitest/ui": "1.4.0",
"bob-the-bundler": "7.0.1",
"graphql": "16.8.1",
"lodash.sortby": "4.7.0",
"mitata": "0.1.6",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"strip-indent": "4.0.0",
"tsx": "4.7.1",
"typescript": "5.4.2",
"vitest": "1.4.0"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}