-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@byteclaw/use-overflow-scroll-position",
"version": "1.0.3",
"description": "React hook for calculating number of pixels scrolled through in an overflow:scroll enabled container",
"main": "dist/use-overflow-scroll-position.js",
"module": "dist/use-overflow-scroll-position.esm.js",
"unpkg": "dist/use-overflow-scroll-position.umd.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"typings": "dist/index.d.js",
"scripts": {
"build": "microbundle build -o dist",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@types/react": "^16.9.11 || ^17.0.0",
"react": "^16.12.0 || ^17.x"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/byteclaw/hooks.git"
},
"keywords": [
"react",
"hooks",
"scroll-position"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/byteclaw/hooks/issues"
},
"homepage": "https://github.com/byteclaw/hooks/tree/master/packages/use-overflow-scroll-position#readme",
"contributors": [
{
"name": "Michal Kvasničák",
"url": "https://github.com/michalkvasnicak"
},
{
"name": "Juraj Hríb",
"url": "https://github.com/jurajhrib"
}
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}