1 | {
|
2 | "name": "@graphql-codegen/typescript-oclif",
|
3 | "version": "2.1.3",
|
4 | "description": "GraphQL Code Generator plugin for generating a CLI tool with oclif",
|
5 | "peerDependencies": {
|
6 | "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",
|
7 | "graphql-tag": "^2.0.0"
|
8 | },
|
9 | "dependencies": {
|
10 | "@graphql-codegen/plugin-helpers": "^2.1.1",
|
11 | "@graphql-codegen/visitor-plugin-common": "2.2.0",
|
12 | "auto-bind": "~4.0.0",
|
13 | "tslib": "~2.3.0"
|
14 | },
|
15 | "repository": {
|
16 | "type": "git",
|
17 | "url": "https://github.com/dotansimha/graphql-code-generator.git",
|
18 | "directory": "packages/plugins/typescript/oclif"
|
19 | },
|
20 | "author": "Kalan Snyder <hello@kalan.io>",
|
21 | "license": "MIT",
|
22 | "main": "index.js",
|
23 | "module": "index.mjs",
|
24 | "typings": "index.d.ts",
|
25 | "typescript": {
|
26 | "definition": "index.d.ts"
|
27 | },
|
28 | "exports": {
|
29 | ".": {
|
30 | "require": "./index.js",
|
31 | "import": "./index.mjs"
|
32 | },
|
33 | "./*": {
|
34 | "require": "./*.js",
|
35 | "import": "./*.mjs"
|
36 | }
|
37 | }
|
38 | }
|