-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "react-use-await",
"version": "1.1.5",
"description": "React hook for handy async ui",
"repository": {
"type": "git",
"url": "git+https://github.com/phytonmk/react-use-await.git"
},
"main": "dist/useAwait.js",
"types": "dist/useAwait.d.ts",
"files": [
"LICENSE",
"package.json",
"readme.md",
"dist/*"
],
"keywords": [
"react",
"fetch",
"suspense",
"promise",
"hooks"
],
"author": "Michael Sereniti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/phytonmk/react-use-await/issues"
},
"homepage": "https://github.com/phytonmk/react-use-await#readme",
"scripts": {
"build": "./build.sh",
"lint": "eslint ./src/**/*.tsx",
"dev": "cd example && vite dev",
"prepack": "pnpm lint && pnpm test && pnpm build",
"test": "vitest"
},
"devDependencies": {
"@types/node": "17.0.10",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@typescript-eslint/parser": "5.10.0",
"esbuild": "0.14.38",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-no-cyrillic-string": "1.0.5",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"esm": "3.2.25",
"husky": "7.0.4",
"jsdom": "19.0.0",
"nanospy": "0.5.0",
"pnpm": "^7.0.1",
"prettier": "2.5.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"tsm": "2.2.1",
"typescript": "4.5.4",
"use-error-boundary": "2.0.6",
"vitest": "^0.26.0"
},
"peerDependencies": {
"react": ">=16.6.0"
}
}