-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "graphql-codegen-aws-lambda-types",
"version": "0.2.0",
"description": "Generate aws-cdk AppSync Lambda Resolver types.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "tsc && graphql-codegen --config test/codegen.yml"
},
"keywords": [
"graphql-codegen",
"aws-cdk",
"appsync",
"lambda"
],
"author": "Masahiro Onohara <masahirompp@gmail.com> (https://github.com/masahirompp)",
"license": "MIT",
"devDependencies": {
"@graphql-codegen/cli": "^1.21.1",
"@graphql-codegen/typescript": "^1.21.0",
"@types/aws-lambda": "^8.10.72",
"@types/node": "^14.14.31",
"graphql": "^15.5.0",
"typescript": "^4.2.2"
},
"peerDependencies": {
"@graphql-codegen/typescript": "*",
"@types/aws-lambda": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masahirompp/graphql-codegen-aws-lambda-types.git"
},
"bugs": {
"url": "https://github.com/masahirompp/graphql-codegen-aws-lambda-types/issues"
},
"homepage": "https://github.com/masahirompp/graphql-codegen-aws-lambda-types#readme"
}