-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "typescript-react-apollo-with-abort-controller",
"version": "1.0.1",
"description": "Creates apollo react hooks with built in abort controller",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"exports": {
".": {
"require": "./dist/cjs/plugin.js",
"import": "./dist/esm/plugin.js"
},
"./hooks": {
"require": "./dist/cjs/hooks/index.js",
"import": "./dist/esm/hooks/index.js"
}
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json"
},
"author": "Husnain Mustafa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kito-arch/typescript-react-apollo-with-abort-controller.git"
},
"keywords": [
"graphql",
"codegen",
"graphql-codegen",
"graphql-code-generator",
"apollo",
"react",
"react-hooks",
"typescript",
"apollo-client",
"abortcontroller",
"abort-controller",
"request-cancellation",
"typescript-react-apollo",
"graphql-plugin"
],
"dependencies": {
"@babel/generator": "^7.24.0",
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"react": "^18.0.0",
"typescript": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.1.9",
"typescript": "^5.0.0"
}
}