-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "scroll-size-observer",
"private": false,
"version": "1.0.0",
"license": "MIT",
"author": "Avisek Das <[email protected]>",
"description": "A lightweight JavaScript library that provides a simple and efficient way to observe changes to elements' `scrollWidth` and `scrollHeight` properties. It offers a similar API to `ResizeObserver`.",
"keywords": [
"scroll",
"dimensions",
"size",
"resize",
"event",
"observer",
"scrollwidth",
"scrollheight",
"zero-dependencies"
],
"homepage": "https://avisek.github.io/scroll-size-observer/",
"repository": {
"type": "git",
"url": "git+https://github.com/avisek/scroll-size-observer.git"
},
"type": "module",
"files": [
"./dist/ScrollSizeObserver.js",
"./dist/ScrollSizeObserver.d.ts"
],
"main": "./dist/ScrollSizeObserver.js",
"types": "./dist/ScrollSizeObserver.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.11.16",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2"
}
}