-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.46 KB
/
package.json
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
{
"name": "@mntm/graphql-codegen",
"version": "5.0.1",
"type": "commonjs",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": {
"name": "Anton Petrov",
"email": "im@petrov.engineer",
"url": "https://petrov.engineer"
},
"description": "Plugin for GraphQL Code Generator",
"license": "MIT",
"keywords": [
"graphql",
"graphql-client",
"graphql-clients",
"fetch"
],
"homepage": "https://github.com/maxi-team/graphql-codegen",
"bugs": "https://github.com/maxi-team/graphql-codegen/issues",
"repository": {
"type": "git",
"url": "https://github.com/maxi-team/graphql-codegen.git"
},
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "tsc"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.4.2",
"@graphql-codegen/visitor-plugin-common": "^2.7.4",
"auto-bind": "~4.0.0"
},
"devDependencies": {
"@mntm/eslint-config": "^1.1.2",
"@mntm/graphql-request": "^1.0.0",
"@types/node": "^17.0.27",
"eslint": "^8.14.0",
"graphql": "^16.4.0",
"shx": "^0.3.4",
"swr": ">=2.0.0-beta.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@mntm/graphql-request": "^1.0.0",
"graphql": "^16.4.0",
"swr": ">=2.0.0-beta.1"
},
"peerDependenciesMeta": {
"@mntm/graphql-request": {
"optional": false
},
"graphql": {
"optional": false
},
"swr": {
"optional": false
}
}
}