-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "urql-generic-requester",
"version": "0.1.0",
"description": "GraphQL Codegen Generic SDK Requester for URQL",
"keywords": [
"graphql",
"graphql-codegen",
"urql",
"requestor",
"urql-graphql-codegen",
"generic-requester",
"urql-generic-typescript"
],
"license": "MIT",
"author": "Reaper <ahoy@barelyhuman.dev>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts --target=node12.22",
"dev": "pnpm build -- --watch",
"next": "bumpp",
"gen:sdk": "node -r tsm scripts/generate-sdk.ts",
"test": "uvu -r tsm tests"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^1.1.0",
"@evilmartians/lefthook": "^1.0.4",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/core": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-generic-sdk": "^3.1.0",
"@mvllow/tsconfig": "^0.1.0",
"@types/isomorphic-fetch": "^0.0.36",
"@typescript-eslint/parser": "^5.30.0",
"bumpp": "^8.2.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"graphql": "^16.3.0",
"isomorphic-fetch": "^3.0.0",
"prettier": "^2.7.1",
"tslib": "^2.3.1",
"tsm": "^2.2.2",
"tsup": "^6.1.2",
"typescript": "^4.5.5",
"urql": "^2.0.6",
"uvu": "^0.5.6"
},
"peerDependencies": {
"graphql": "^16.3.0",
"urql": "^2.0.6"
},
"packageManager": "pnpm@6.32.10"
}