-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "use-open-window",
"version": "1.5.5",
"description": "Fancy React hook for open links in windows",
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"check-types": "tsc --noEmit",
"check-types:watch": "yarn check-types --watch",
"lint": "yarn eslint ./src/**/*.{ts,tsx}",
"lint-fix": "yarn lint --fix",
"build": "microbundle src/*.ts",
"dev": "microbundle src/*.ts watch",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "^0.15.1",
"mocha": "^9.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bartlomiejzuber/useOpenInWindow.git"
},
"keywords": [
"react",
"use",
"hook",
"open",
"links",
"new",
"window",
"separate",
"centered",
"href",
"target",
"blank"
],
"author": "Bartlomiej Zuber ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartlomiejzuber/useOpenInWindow/issues"
},
"homepage": "https://github.com/bartlomiejzuber/useOpenInWindow#readme"
}