-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 768 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 768 Bytes
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
{
"name": "use-abort-controller-hook",
"version": "1.0.2",
"description": "React AbortController Hook",
"author": "marcoSven",
"license": "MIT",
"repository": "marcoSven/use-abort-controller-hook",
"type": "module",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"source": "src/index.tsx",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"devDependencies": {
"@types/react": "^18.0.26",
"gh-pages": "^2.0.1",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-scripts": "^5.0.1"
}
}