-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 909 Bytes
/
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
{
"name": "react-sticky-ts",
"type": "module",
"types": "src/index.ts",
"files": ["dist"],
"private": false,
"version": "1.0.7",
"description": "TypeScript version of react-sticky, using function components and hooks refactor.",
"main": "./dist/react-sticky-ts.umd.cjs",
"module": "./dist/react-sticky-ts.es.js",
"exports": {
".": {
"import": "./dist/react-sticky-ts.es.js",
"require": "./dist/react-sticky-ts.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Qyokizzzz/react-sticky-ts"
},
"keywords": [
"sticky",
"react-sticky",
"react-sticky-ts"
],
"author": "Qyokizzzz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Qyokizzzz/react-sticky-ts/issues"
},
"homepage": "https://github.com/Qyokizzzz/react-sticky-ts#readme",
"dependencies": {
"raf": "^3.4.1",
"react": "^17.0.2"
}
}