forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "graphql-request",
"version": "0.0.0-dripip",
"type": "module",
"main": "./build/cjs/index.js",
"exports": {
".": {
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
},
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
}
}
},
"types": "./build/esm/index.d.ts",
"packageManager": "[email protected]",
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/jasonkuhrt/graphql-request.git"
},
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client"
],
"author": {
"name": "Jason Kuhrt",
"email": "[email protected]",
"url": "https://kuhrt.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonkuhrt/graphql-request/issues"
},
"homepage": "https://github.com/jasonkuhrt/graphql-request",
"scripts": {
"dev": "rm -rf dist && tsc --watch",
"format": "pnpm build:docs && prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix",
"check": "pnpm check:types && pnpm check:format && pnpm check:lint",
"check:types": "pnpm tsc --noEmit",
"check:format": "prettier --check . && pnpm build:docs && git diff --exit-code README.md",
"check:lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"prepublishOnly": "pnpm build",
"build:docs": "doctoc README.md --notitle && prettier --write README.md",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm",
"build:cjs": "pnpm tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > build/cjs/package.json",
"build:esm": "pnpm tsc --project tsconfig.esm.json",
"clean": "tsc --build --clean && rm -rf build",
"test": "vitest",
"test:coverage": "pnpm test -- --coverage",
"release:stable": "dripip stable",
"release:preview": "dripip preview",
"release:pr": "dripip pr"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"cross-fetch": "^4.0.0"
},
"peerDependencies": {
"graphql": "14 - 16"
},
"devDependencies": {
"@graphql-tools/schema": "^9.0.18",
"@prisma-labs/prettier-config": "^0.1.0",
"@tsconfig/node16": "^1.0.3",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/json-bigint": "^1.0.1",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-c8": "^0.33.0",
"apollo-server-express": "^3.12.0",
"body-parser": "^1.20.2",
"doctoc": "^2.2.1",
"dripip": "^0.10.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-prisma": "^0.1.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"express": "^4.18.2",
"fetch-cookie": "^2.1.0",
"get-port": "^7.0.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.12.1",
"happy-dom": "^11.0.0",
"json-bigint": "^1.0.0",
"prettier": "^3.0.0",
"type-fest": "^4.0.0",
"typescript": "^5.0.4",
"vitest": "^0.34.0",
"ws": "^8.13.0"
},
"prettier": "@prisma-labs/prettier-config"
}