UNPKG

2.55 kBJSONView Raw
1{
2 "name": "@graphql-codegen/cli",
3 "version": "2.6.2",
4 "peerDependencies": {
5 "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"
6 },
7 "dependencies": {
8 "@graphql-codegen/core": "2.5.1",
9 "@graphql-codegen/plugin-helpers": "^2.4.1",
10 "@graphql-tools/apollo-engine-loader": "^7.0.5",
11 "@graphql-tools/code-file-loader": "^7.0.6",
12 "@graphql-tools/git-loader": "^7.0.5",
13 "@graphql-tools/github-loader": "^7.0.5",
14 "@graphql-tools/graphql-file-loader": "^7.0.5",
15 "@graphql-tools/json-file-loader": "^7.1.2",
16 "@graphql-tools/load": "^7.3.0",
17 "@graphql-tools/prisma-loader": "^7.0.6",
18 "@graphql-tools/url-loader": "^7.0.11",
19 "@graphql-tools/utils": "^8.1.1",
20 "ansi-escapes": "^4.3.1",
21 "chalk": "^4.1.0",
22 "change-case-all": "1.0.14",
23 "chokidar": "^3.5.2",
24 "common-tags": "^1.8.0",
25 "cosmiconfig": "^7.0.0",
26 "debounce": "^1.2.0",
27 "dependency-graph": "^0.11.0",
28 "detect-indent": "^6.0.0",
29 "glob": "^7.1.6",
30 "globby": "^11.0.4",
31 "graphql-config": "^4.1.0",
32 "inquirer": "^8.0.0",
33 "is-glob": "^4.0.1",
34 "json-to-pretty-yaml": "^1.2.2",
35 "latest-version": "5.1.0",
36 "listr": "^0.14.3",
37 "listr-update-renderer": "^0.5.0",
38 "log-symbols": "^4.0.0",
39 "minimatch": "^4.0.0",
40 "mkdirp": "^1.0.4",
41 "string-env-interpolation": "^1.0.1",
42 "ts-log": "^2.2.3",
43 "tslib": "~2.3.0",
44 "valid-url": "^1.0.9",
45 "wrap-ansi": "^7.0.0",
46 "yaml": "^1.10.0",
47 "yargs": "^17.0.0"
48 },
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/dotansimha/graphql-code-generator.git",
52 "directory": "packages/graphql-codegen-cli"
53 },
54 "homepage": "https://github.com/dotansimha/graphql-code-generator#readme",
55 "keywords": [
56 "gql",
57 "generator",
58 "code",
59 "types",
60 "interfaces",
61 "graphql",
62 "codegen",
63 "apollo",
64 "node",
65 "typescript",
66 "ts",
67 "flow",
68 "types",
69 "d.ts",
70 "typings"
71 ],
72 "author": "Dotan Simha <dotansimha@gmail.com>",
73 "license": "MIT",
74 "main": "index.js",
75 "module": "index.mjs",
76 "typings": "index.d.ts",
77 "typescript": {
78 "definition": "index.d.ts"
79 },
80 "exports": {
81 "./package.json": "./package.json",
82 ".": {
83 "require": "./index.js",
84 "import": "./index.mjs"
85 },
86 "./*": {
87 "require": "./*.js",
88 "import": "./*.mjs"
89 }
90 },
91 "bin": {
92 "gql-gen": "bin.js",
93 "graphql-codegen": "bin.js",
94 "graphql-code-generator": "bin.js"
95 }
96}