-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "apollo-upload-client",
"version": "18.0.1",
"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": "[email protected]",
"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": [
"createUploadLink.mjs",
"formDataAppendFile.mjs",
"isExtractableFile.mjs"
],
"sideEffects": false,
"exports": {
"./createUploadLink.mjs": "./createUploadLink.mjs",
"./formDataAppendFile.mjs": "./formDataAppendFile.mjs",
"./isExtractableFile.mjs": "./isExtractableFile.mjs",
"./package.json": "./package.json"
},
"engines": {
"node": "^18.15.0 || >=20.4.0"
},
"browserslist": "Node 18.15 - 19 and Node < 19, Node >= 20.4, > 0.5%, not OperaMini all, not IE > 0, not dead",
"peerDependencies": {
"@apollo/client": "^3.8.0",
"graphql": "14 - 16"
},
"dependencies": {
"extract-files": "^13.0.0"
},
"devDependencies": {
"@apollo/client": "^3.8.6",
"@types/node": "^20.8.7",
"coverage-node": "^8.0.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-plugin-optimal-modules": "^1.0.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"gzip-size": "^7.0.0",
"prettier": "^3.0.3",
"revertable-globals": "^4.0.0",
"typescript": "^5.2.2"
},
"scripts": {
"eslint": "eslint .",
"prettier": "prettier -c .",
"types": "tsc -p jsconfig.json",
"tests": "coverage-node --test-reporter=spec --test",
"test": "npm run eslint && npm run prettier && npm run types && npm run tests",
"prepublishOnly": "npm test"
}
}