-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "use-async-queue",
"version": "3.0.1",
"source": "use-async-queue.ts",
"main": "dist/use-async-queue.js",
"exports": {
"types": "./dist/use-async-queue.d.ts",
"require": "./dist/use-async-queue.js",
"default": "./dist/use-async-queue.modern.mjs"
},
"types": "dist/use-async-queue.d.ts",
"module": "dist/use-async-queue.module.js",
"unpkg": "dist/use-async-queue.umd.js",
"author": "William Bert <william.bert@gmail.com>",
"url": "https://github.com/sandinmyjoints/use-async-queue",
"homepage": "https://github.com/sandinmyjoints/use-async-queue",
"bugs": {
"url": "https://github.com/sandinmyjoints/use-async-queue/issues"
},
"license": "ISC",
"keywords": [
"react",
"hook",
"queue",
"async",
"concurrent"
],
"scripts": {
"build": "microbundle",
"prerelease": "yarn run build",
"preversion": "yarn run build",
"release": "np",
"dev": "microbundle watch",
"lint": "eslint use-async-queue.*.js",
"test": "jest --config=jest.config.js"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/jest": "25.2.3",
"@types/next-tick": "1.0.0",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "5.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "0.15.1",
"np": "10.0.7",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"react": "18.3.1"
},
"dependencies": {
"next-tick": "1.1.0"
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
},
"packageManager": "yarn@4.5.1"
}