@bitblit/ratchet-graphql 4.0.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/build/ratchet-graphql-info.d.ts +5 -0
- package/lib/graphql/graphql-ratchet.d.ts +22 -0
- package/lib/graphql/provider/default-graphql-ratchet-error-handler.d.ts +8 -0
- package/lib/graphql/provider/graphql-ratchet-endpoint-provider.d.ts +3 -0
- package/lib/graphql/provider/graphql-ratchet-error-handler.d.ts +3 -0
- package/lib/graphql/provider/graphql-ratchet-jwt-token-provider.d.ts +3 -0
- package/lib/graphql/provider/graphql-ratchet-query-provider.d.ts +3 -0
- package/lib/graphql/provider/local-fetch-query-provider.d.ts +8 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.mjs +3 -0
- package/lib/index.mjs.map +1 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bitblit/ratchet-graphql",
|
|
3
|
+
"version": "4.0.1-alpha",
|
|
4
|
+
"description": "Ratchet tools to simplify use of graphql",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib/*",
|
|
9
|
+
"bin/*"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./lib/index.d.ts",
|
|
14
|
+
"import": "./lib/index.mjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"contributors": [
|
|
18
|
+
"Christopher Weiss <bitblit@gmail.com>",
|
|
19
|
+
"William Weiss <npm@codification.org>",
|
|
20
|
+
"Austin Grantham <agrantham@algidious.com>",
|
|
21
|
+
"Lucas Myers <veganbeef@protonmail.com>",
|
|
22
|
+
"Joel Flint <joel@stimulimedia.net>",
|
|
23
|
+
"Bilal Shahid <bshahid@adomni.com>"
|
|
24
|
+
],
|
|
25
|
+
"husky": {
|
|
26
|
+
"hooks": {
|
|
27
|
+
"pre-commit": "pretty-quick --staged"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"prettier": {
|
|
31
|
+
"printWidth": 140,
|
|
32
|
+
"singleQuote": true,
|
|
33
|
+
"arrowParens": "always"
|
|
34
|
+
},
|
|
35
|
+
"config": {},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"watch": "tsc-watch",
|
|
38
|
+
"clean": "shx rm -Rf lib",
|
|
39
|
+
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
40
|
+
"docs": "typedoc",
|
|
41
|
+
"lint": "eslint src/**/*.ts",
|
|
42
|
+
"lint-fix": "eslint --fix src/**/*.ts",
|
|
43
|
+
"generate-barrels": "barrelsby -q --delete -d src -e .*\\.spec\\.ts && sed -i 's/\\x27;/.js\\x27;/' src/index.ts",
|
|
44
|
+
"build": "yarn clean && yarn generate-barrels && rollup -c rollup.config.js",
|
|
45
|
+
"force-build": "tsc --build --force"
|
|
46
|
+
},
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/bitblit/Ratchet"
|
|
50
|
+
},
|
|
51
|
+
"keywords": [
|
|
52
|
+
"wrench",
|
|
53
|
+
"utility"
|
|
54
|
+
],
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/bitblit/Ratchet/issues"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://github.com/bitblit/Ratchet#readme",
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=14.18"
|
|
61
|
+
},
|
|
62
|
+
"license": "Apache-2.0",
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@apollo/client": "3.7.14",
|
|
65
|
+
"@bitblit/ratchet-common": "4.0.1-alpha",
|
|
66
|
+
"graphql": "16.6.0"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {}
|
|
71
|
+
}
|