-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "react-continous-scroll",
"version": "1.4.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "npx @biomejs/biome lint --write",
"format": "npx @biomejs/biome format --write",
"build": "rimraf dist && tsup src/index.ts --format esm,cjs --minify --dts",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"bugs": "https://github.com/sebas-sala/infinite-scroll-react/issues",
"homepage": "https://github.com/sebas-sala/infinite-scroll-react",
"license": "MIT",
"description": "Lightweight and easy to use react hook for infinite scroll",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18.3.1"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}