-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 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
{
"name": "apollo-upload-client",
"version": "19.0.0",
"description": "A terminating Apollo Link for Apollo Client that fetches a GraphQL multipart request if the GraphQL variables contain files (by default FileList, File, or Blob instances), or else fetches a regular GraphQL POST or GET request (depending on the config and GraphQL operation).",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "me@jaydenseric.com",
"url": "https://jaydenseric.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaydenseric/apollo-upload-client.git"
},
"homepage": "https://github.com/jaydenseric/apollo-upload-client#readme",
"bugs": "https://github.com/jaydenseric/apollo-upload-client/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"graphql",
"multipart",
"request",
"file",
"upload",
"apollo",
"client",
"link",
"react",
"esm",
"mjs"
],
"files": [
"formDataAppendFile.mjs",
"isExtractableFile.mjs",
"UploadHttpLink.mjs"
],
"sideEffects": false,
"exports": {
"./formDataAppendFile.mjs": "./formDataAppendFile.mjs",
"./isExtractableFile.mjs": "./isExtractableFile.mjs",
"./package.json": "./package.json",
"./UploadHttpLink.mjs": "./UploadHttpLink.mjs"
},
"engines": {
"node": "^20.9.0 || >=22.0.0"
},
"browserslist": "Node 20.9 - 21 and Node < 21, Node >= 22, > 0.5%, not OperaMini all, not dead",
"peerDependencies": {
"@apollo/client": "^4.0.0",
"graphql": "14 - 16",
"rxjs": "^7.3.0"
},
"dependencies": {
"extract-files": "^13.0.0"
},
"devDependencies": {
"@apollo/client": "^4.1.6",
"@eslint/js": "^9.39.3",
"@types/node": "^25.3.3",
"coverage-node": "^8.0.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-optimal-modules": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"graphql": "^16.13.0",
"graphql-tag": "^2.12.6",
"gzip-size": "^7.0.0",
"prettier": "^3.8.1",
"revertable-globals": "^4.0.0",
"rxjs": "^7.8.2",
"typescript": "^5.9.3"
},
"scripts": {
"prettier": "prettier -c .",
"eslint": "eslint",
"types": "tsc -p jsconfig.json",
"test": "coverage-node --test-reporter=spec --test *.test.mjs",
"check": "node --run prettier && node --run eslint && node --run types && node --run test",
"prepublishOnly": "node --run check"
}
}