-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "next-lazy-hydration-on-scroll",
"version": "1.1.1",
"description": "Hydrate components dynamically as the user scrolls.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": {
"name": "Wojciech Wrotek",
"email": "[email protected]"
},
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"clean": "rm -rf node_modules && rm -rf dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/woywro/next-lazy-hydration-on-scroll"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"react",
"nextjs",
"hydration"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.45",
"@types/react": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"tsup": "^8.2.4",
"typescript": "4.5.5"
},
"peerDependencies": {
"next": ">=12",
"react": ">=18"
}
}