forked from jaydenseric/apollo-upload-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
{
"name": "apollo-upload-client",
"version": "17.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, Blob, or ReactNativeFile 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": "github:jaydenseric/apollo-upload-client",
"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",
"native",
"esm",
"mjs"
],
"files": [
"public"
],
"sideEffects": false,
"main": "public",
"exports": {
".": {
"import": "./public/index.mjs",
"require": "./public/index.js"
},
"./public/*": "./public/*",
"./package.json": "./package.json"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"browserslist": "Node 14.17 - 15 and Node < 15, Node 16 - 17 and Node < 17, Node >= 18, > 0.5%, not OperaMini all, not IE > 0, not dead",
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "14 - 16"
},
"dependencies": {
"extract-files": "^11.0.0"
},
"devDependencies": {
"@apollo/client": "^3.5.10",
"abort-controller": "^3.0.0",
"coverage-node": "^6.1.0",
"esbuild": "^0.14.38",
"eslint": "^8.14.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"formdata-node": "^4.3.2",
"graphql": "^16.3.0",
"gzip-size": "^7.0.0",
"jsdoc-md": "^11.0.2",
"node-fetch": "^3.2.3",
"prettier": "^2.6.2",
"revertable-globals": "^3.0.0",
"test-director": "^8.0.2"
},
"scripts": {
"docs-update": "jsdoc-md",
"docs-check": "jsdoc-md -c",
"eslint": "eslint .",
"prettier": "prettier -c .",
"tests": "coverage-node test/index.mjs",
"test": "npm run eslint && npm run prettier && npm run docs-check && npm run tests",
"prepublishOnly": "npm test"
}
}