-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "react-async-fetch",
"version": "0.4.3",
"description": "React Hooks for asynchronous processing",
"keywords": [
"react",
"fetch",
"async",
"hook",
"hooks",
"query"
],
"homepage": "https://github.com/woo-jk/react-async-fetch",
"bugs": {
"url": "https://github.com/woo-jk/react-async-fetch/issues",
"email": "[email protected]"
},
"author": {
"name": "woo-jk",
"email": "[email protected]",
"url": "https://github.com/woo-jk"
},
"repository": {
"type": "git",
"url": "https://github.com/woo-jk/react-async-fetch"
},
"main": "dist/index.js",
"scripts": {
"prepack": "yarn build",
"build": "yarn clean && yarn build:tsc && yarn build:js",
"build:tsc": "yarn tsc --emitDeclarationOnly",
"build:js": "node build.js",
"clean": "rm -rf dist"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"license": "MIT",
"type": "module",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"esbuild": "^0.19.5",
"typescript": "^5.2.2"
},
"files": [
"dist",
"src"
]
}