-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "@pbr1111/use-resize-observer",
"version": "1.1.4",
"description": "useResizeObserver hook",
"private": false,
"author": "pbr1111 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pbr1111/use-resize-observer.git"
},
"homepage": "https://github.com/pbr1111/use-resize-observer#readme",
"keywords": [
"react",
"hooks",
"react-hooks",
"resize observer",
"resizeobserver",
"use resize observer"
],
"main": "dist/index.js",
"module": "dist/use-resize-observer.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepublishOnly": "tsdx build",
"size": "size-limit"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^5.0.1",
"tsdx": "^0.14.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"resolutions": {
"typescript": "^4.2.2"
}
}