-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.68 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-use-async-pool",
"description": "一个 react hook,支持控制异步函数的并发数",
"version": "0.0.4",
"files": [
"dist"
],
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"echo"
],
"src/**/*.{tsx,ts}": [
"npx tsc --noEmit",
"lint"
]
},
"scripts": {
"prepare": "npx husky install",
"dev": "cross-env SHOW_ALL_COMPONENT_DEMOS=true && vite serve docs",
"lint": "eslint --fix && prettier --ignore-path .gitignore --check --write src/**/*.ts",
"staged": "npx lint-staged",
"commit": "npx cz",
"test": "vitest run",
"test-dev":"vitest",
"test-cov": "vitest run --coverage",
"build-docs": "rimraf docs/dist && vite build docs",
"serve": "serve -s docs/dist",
"ssr-docs": "rimraf docs/dist && vite-pages ssr docs && serve docs/dist",
"build-lib": "vite build"
},
"devDependencies": {
"@mdx-js/react": "^2.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^18.11.16",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.29.2",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"serve": "^14.1.2",
"typescript": "^4.9.5",
"vite": "^4.0.1",
"vite-pages-theme-doc": "^4.0.0",
"vite-plugin-react-pages": "^4.0.0",
"vitest": "^0.29.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2"
},
"keywords": [
"react",
"hooks",
"concurrency",
"asynchronous"
],
"bugs": {
"url": "https://github.com/TonicFizzRicky/react-use-async-pool/issues"
},
"author": {
"name": "wongchisum",
"email": "im.wongch1sum@gmail.com",
"url": "https://wong1997.netlify.app/"
},
"repository": {
"type": "git",
"url": "https://github.com/TonicFizzRicky/react-use-async-pool.git"
}
}