-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "use-elevator",
"version": "0.2.2",
"author": "Bilal Mansuri",
"repository": {
"type": "git",
"url": "https://github.com/bilal-23/use-elevator.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^5.2.2",
"vite": "^5.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"description": "A React hook for smooth scrolling that transforms boring scroll-to-top actions into playful elevator experiences with customizable settings",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"react",
"hook",
"scroll",
"elevator",
"scroll-to-top",
"smooth-scroll",
"animation"
],
"license": "MIT",
"scripts": {
"dev": "bun --bun vite",
"build": "bun --bun tsc && bun --bun vite build",
"build:lib": "rollup -c rollup.config.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "bun --bun vite preview",
"prepublishOnly": "bun run build:lib",
"start": "bun --bun vite"
},
"types": "dist/index.d.ts"
}