1 | {
|
2 | "name": "graphql-request",
|
3 | "version": "7.1.2",
|
4 | "type": "module",
|
5 | "main": "./build/entrypoints/main.js",
|
6 | "exports": {
|
7 | ".": {
|
8 | "default": "./build/entrypoints/main.js"
|
9 | }
|
10 | },
|
11 | "files": [
|
12 | "build",
|
13 | "src"
|
14 | ],
|
15 | "repository": {
|
16 | "type": "git",
|
17 | "url": "https://github.com/jasonkuhrt/graphql-request.git"
|
18 | },
|
19 | "keywords": [
|
20 | "graphql",
|
21 | "request",
|
22 | "fetch",
|
23 | "graphql-client"
|
24 | ],
|
25 | "author": {
|
26 | "name": "Jason Kuhrt",
|
27 | "email": "jasonkuhrt@me.com",
|
28 | "url": "https://kuhrt.me"
|
29 | },
|
30 | "license": "MIT",
|
31 | "bugs": {
|
32 | "url": "https://github.com/jasonkuhrt/graphql-request/issues"
|
33 | },
|
34 | "homepage": "https://github.com/jasonkuhrt/graphql-request",
|
35 | "dependencies": {
|
36 | "@graphql-typed-document-node/core": "^3.2.0"
|
37 | },
|
38 | "peerDependencies": {
|
39 | "graphql": "14 - 16"
|
40 | },
|
41 | "devDependencies": {
|
42 | "@arethetypeswrong/cli": "^0.15.3",
|
43 | "@pothos/core": "^3.41.1",
|
44 | "@pothos/plugin-simple-objects": "^3.7.0",
|
45 | "@tsconfig/node18": "^18.2.4",
|
46 | "@tsconfig/strictest": "^2.0.5",
|
47 | "@types/body-parser": "^1.19.5",
|
48 | "@types/express": "^4.17.21",
|
49 | "@types/json-bigint": "^1.0.4",
|
50 | "@types/node": "^20.14.7",
|
51 | "@typescript-eslint/eslint-plugin": "^7.13.1",
|
52 | "@typescript-eslint/parser": "^7.13.1",
|
53 | "apollo-server-express": "^3.13.0",
|
54 | "body-parser": "^1.20.2",
|
55 | "doctoc": "^2.2.1",
|
56 | "dripip": "^0.10.0",
|
57 | "eslint": "^9.5.0",
|
58 | "eslint-config-prisma": "^0.6.0",
|
59 | "eslint-plugin-deprecation": "^3.0.0",
|
60 | "eslint-plugin-only-warn": "^1.1.0",
|
61 | "eslint-plugin-prefer-arrow": "^1.2.3",
|
62 | "eslint-plugin-simple-import-sort": "^12.1.0",
|
63 | "eslint-plugin-tsdoc": "^0.3.0",
|
64 | "eslint-typescript": "^1.1.0",
|
65 | "express": "^4.19.2",
|
66 | "get-port": "^7.1.0",
|
67 | "graphql": "^16.9.0",
|
68 | "graphql-scalars": "^1.23.0",
|
69 | "graphql-tag": "^2.12.6",
|
70 | "jsdom": "^24.1.0",
|
71 | "json-bigint": "^1.0.0",
|
72 | "publint": "^0.2.8",
|
73 | "tsx": "^4.15.7",
|
74 | "type-fest": "^4.20.1",
|
75 | "typescript": "^5.5.2",
|
76 | "typescript-eslint": "^7.13.1",
|
77 | "vitest": "^1.6.0"
|
78 | },
|
79 | "scripts": {
|
80 | "gen:test:schema": "tsx tests/_/schemaGenerate.ts",
|
81 | "demo": "tsx src/cli/generateSchema.ts && dprint fmt src/demo.ts",
|
82 | "dev": "rm -rf dist && tsc --watch",
|
83 | "format": "pnpm build:docs && dprint fmt",
|
84 | "lint": "eslint . --fix",
|
85 | "check": "pnpm check:types && pnpm check:format && pnpm check:lint && pnpm check:publint",
|
86 | "check:types": "pnpm tsc --noEmit",
|
87 | "check:format": "dprint check && pnpm build:docs && git diff --exit-code README.md",
|
88 | "check:lint": "eslint . --max-warnings 0",
|
89 | "check:publint": "publint run --strict",
|
90 | "build:docs": "doctoc README.md --notitle && dprint fmt README.md",
|
91 | "build": "pnpm clean && pnpm tsc --project tsconfig.build.json",
|
92 | "clean": "tsc --build --clean && rm -rf build",
|
93 | "test": "vitest",
|
94 | "test:web": "vitest --environment jsdom",
|
95 | "test:types": "vitest --typecheck",
|
96 | "test:coverage": "pnpm test -- --coverage",
|
97 | "release:stable": "dripip stable",
|
98 | "release:preview": "dripip preview",
|
99 | "release:pr": "dripip pr"
|
100 | }
|
101 | } |
\ | No newline at end of file |