-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "react-use-scheduler",
"version": "1.1.0",
"description": "A React hook that allows you to schedule tasks and automatically orchestrate them based on your component lifecycle and visibility.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "swc src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valcol/react-use-scheduler.git"
},
"keywords": [
"react",
"hook",
"scheduler",
"scheduling",
"fid",
"inp",
"postTask"
],
"author": "valcol",
"license": "MIT",
"bugs": {
"url": "https://github.com/valcol/react-use-scheduler/issues"
},
"homepage": "https://github.com/valcol/react-use-scheduler#readme",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@testing-library/react": "^13.4.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"react-intersection-observer": "^9.4.0"
}
}