This repository was archived by the owner on Sep 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.12 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.12 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "graphql-ts-client",
"version": "10.4.0",
"description": "GraphQL Typescript Client Generator",
"author": "Wellington Guimaraes",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts src/endpoint.ts --dts",
"test": "cross-env GQL_CLIENT_DIST_PATH='.' jest --watch",
"prepublishOnly": "yarn build"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/wellguimaraes/graphql-ts-client/issues"
},
"homepage": "https://github.com/wellguimaraes/graphql-ts-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wellguimaraes/graphql-ts-client.git"
},
"peerDependencies": {},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"proseWrap": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 130,
"htmlWhitespaceSensitivity": "ignore",
"jsxSingleQuote": false
},
"module": "dist/graphql-ts-client.esm.js",
"size-limit": [
{
"path": "dist/graphql-ts-client.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/graphql-ts-client.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@types/md5": "^2.3.2",
"axios": "^1.4.0",
"axios-retry": "^3.5.1",
"case": "^1.6.3",
"esbuild": "^0.18.16",
"graphql": "^16.7.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"moize": "^6.1.6",
"prettier": "^2.8.8",
"ts-essentials": "^8.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.5",
"@types/prettier": "^2.7.3",
"apollo-server": "^3.12.0",
"cross-env": "^7.0.3",
"jest": "^29.6.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"@swc/core": "^1.3.71"
}
}