-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.43 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.43 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@graphql-codegen/cli",
"version": "6.2.1",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dotansimha/graphql-code-generator.git",
"directory": "packages/graphql-codegen-cli"
},
"homepage": "https://github.com/dotansimha/graphql-code-generator#readme",
"bugs": {
"url": "https://github.com/dotansimha/graphql-codegen/issues"
},
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"bin": {
"gql-gen": "dist/cjs/bin.js",
"graphql-codegen": "dist/cjs/bin.js",
"graphql-code-generator": "dist/cjs/bin.js",
"graphql-codegen-esm": "dist/esm/bin.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"
}
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
"keywords": [
"gql",
"generator",
"code",
"types",
"interfaces",
"graphql",
"codegen",
"apollo",
"node",
"typescript",
"ts",
"flow",
"types",
"d.ts",
"typings"
],
"scripts": {
"lint": "eslint **/*.ts",
"test": "vitest --no-watch"
},
"peerDependencies": {
"@parcel/watcher": "^2.1.0",
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"@parcel/watcher": {
"optional": true
}
},
"dependencies": {
"@babel/generator": "^7.18.13",
"@babel/template": "^7.18.10",
"@babel/types": "^7.18.13",
"@graphql-codegen/client-preset": "^5.2.4",
"@graphql-codegen/core": "^5.0.1",
"@graphql-codegen/plugin-helpers": "^6.2.0",
"@graphql-tools/apollo-engine-loader": "^8.0.28",
"@graphql-tools/code-file-loader": "^8.1.28",
"@graphql-tools/git-loader": "^8.0.32",
"@graphql-tools/github-loader": "^9.0.6",
"@graphql-tools/graphql-file-loader": "^8.1.11",
"@graphql-tools/json-file-loader": "^8.0.26",
"@graphql-tools/load": "^8.1.8",
"@graphql-tools/merge": "^9.0.6",
"@graphql-tools/url-loader": "^9.0.6",
"@graphql-tools/utils": "^11.0.0",
"@inquirer/prompts": "^7.8.2",
"@whatwg-node/fetch": "^0.10.0",
"chalk": "^4.1.0",
"cosmiconfig": "^9.0.0",
"debounce": "^2.0.0",
"detect-indent": "^6.0.0",
"graphql-config": "^5.1.6",
"is-glob": "^4.0.1",
"jiti": "^2.3.0",
"json-to-pretty-yaml": "^1.2.2",
"listr2": "^10.0.0",
"log-symbols": "^4.0.0",
"micromatch": "^4.0.5",
"shell-quote": "^1.7.3",
"string-env-interpolation": "^1.0.1",
"ts-log": "^2.2.3",
"tslib": "^2.4.0",
"yaml": "^2.3.1",
"yargs": "^17.0.0"
},
"devDependencies": {
"@parcel/watcher": "^2.1.0",
"@types/is-glob": "4.0.4",
"@types/js-yaml": "4.0.9",
"@types/micromatch": "^4.0.2",
"@types/shell-quote": "1.7.5",
"bdd-stdin": "0.2.0",
"change-case-all": "1.0.15",
"js-yaml": "4.1.0",
"make-dir": "4.0.0",
"prettier": "3.8.1"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}