-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.83 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
{
"name": "@stackworx/relay-network",
"version": "3.0.0-alpha.0",
"description": "A Relay Network layer built on ky, with support for file uploads (GraphQL multipart request) and incremental delivery (@defer/@stream).",
"license": "MIT",
"author": "Stackworx <ciaran@stackworx.io> (https://stackworx.io)",
"homepage": "https://github.com/stackworx/relay-network#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stackworx/relay-network.git"
},
"bugs": {
"url": "https://github.com/stackworx/relay-network/issues"
},
"keywords": [
"relay",
"relay-runtime",
"graphql",
"network",
"ky",
"fetch",
"defer",
"stream",
"incremental-delivery",
"graphql-multipart-request",
"file-upload"
],
"type": "module",
"types": "./dist/main.d.mts",
"files": [
"dist"
],
"exports": {
".": "./dist/main.mjs",
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"typecheck": "tsc --noEmit",
"coverage": "vitest run --coverage",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.3.0",
"@typescript-eslint/eslint-plugin": "8.56.0",
"@typescript-eslint/parser": "8.56.0",
"@vitest/coverage-v8": "4.0.18",
"dprint": "0.51.1",
"eslint": "10.0.0",
"ky": "2.0.2",
"msw": "2.12.10",
"relay-runtime": "21.0.1",
"tsdown": "^0.20.3",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"peerDependencies": {
"ky": ">=2.0.0",
"relay-runtime": ">=17.0.0"
},
"dependencies": {
"extract-files": "^13.0.0"
}
}