-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
76 lines (76 loc) · 1.93 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": "react-resize-detector",
"version": "12.0.1",
"description": "React resize detector",
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maslianok/react-resize-detector.git"
},
"scripts": {
"build": "rollup -c",
"link": "npm link react react-dom",
"prettier": "prettier --write .",
"lint": "eslint . --fix",
"fix": "npm run prettier && npm run lint",
"prerelease": "npm version prerelease --preid=rc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/lodash": "^4.17.13",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"rollup-plugin-node-externals": "^7.1.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"author": "Vitalii Maslianok <[email protected]> (https://github.com/maslianok)",
"bugs": {
"url": "https://github.com/maslianok/react-resize-detector/issues"
},
"homepage": "https://github.com/maslianok/react-resize-detector",
"keywords": [
"react",
"resize",
"detector",
"resizeObserver",
"observer"
],
"license": "MIT",
"sideEffects": false,
"maintainers": [
{
"name": "Vitalii Maslianok",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "James J. Womack (@james_womack)"
},
{
"name": "Roman Zhuravlov (@snelsi)"
}
]
}