-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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": "single-tab",
"version": "1.1.4",
"description": "A lightweight React library to detect and handle duplicate tabs in web applications",
"author": "Abiodun Sabitu",
"contributors": [
{
"name": "Ayooluwa Aduwo"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"duplicate-tab",
"single-tab",
"react",
"browser-tabs",
"duplicate-tab-detection"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Abiodun-Sabitu/single-tab.git"
},
"homepage": "https://github.com/Abiodun-Sabitu/single-tab",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/testing-library__react": "^10.2.0",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"uuid": "^11.0.5"
}
}