-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 910 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 910 Bytes
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
{
"name": "codegen-typescript-typeguards",
"version": "1.1.0",
"description": "Generate TypeScript typeguards for all GraphQL types and fragments",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gthau/codegen-typescript-typeguards.git"
},
"author": "Ghislain Thau <ghislain.thau@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"dist/index.js",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"generate": "graphql-codegen --config codegen.yml",
"start": "yarn build && yarn generate"
},
"devDependencies": {
"@graphql-codegen/cli": "6.1.0",
"@graphql-codegen/plugin-helpers": "6.1.0",
"@graphql-codegen/typescript": "5.0.7",
"@graphql-codegen/visitor-plugin-common": "6.2.2",
"change-case-all": "^1.0.14",
"graphql": "^16.5.0",
"typescript": ">= 4.8.4"
}
}