-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.61 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
99
100
101
102
103
104
{
"name": "@theguild/federation-composition",
"version": "0.20.2",
"type": "module",
"description": "Open Source Composition library for Apollo Federation",
"repository": {
"type": "git",
"url": "graphql-hive/federation-composition"
},
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"packageManager": "pnpm@10.21.0",
"engines": {
"node": ">=18",
"pnpm": ">=10"
},
"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": "NODE_ENV=production tsx --expose-gc ./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.4",
"debug": "4.4.3",
"json5": "^2.2.3",
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"@apollo/composition": "2.11.3",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7",
"@types/debug": "4.1.12",
"@types/lodash.sortby": "4.7.9",
"@types/node": "22.19.0",
"@vitest/ui": "4.0.8",
"bob-the-bundler": "7.0.1",
"graphql": "16.11.0",
"lodash.sortby": "4.7.0",
"mitata": "1.0.34",
"prettier": "3.6.2",
"rimraf": "5.0.10",
"strip-indent": "4.1.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vitest": "4.0.8"
},
"resolutions": {
"braces": "3.0.3"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}