-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "react-keep-visible",
"version": "3.0.0",
"description": "Attempt to keep an element within the viewport as the user scrolls",
"homepage": "https://github.com/nihlton/react-keep-visible#readme",
"author": "Greg Archer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nihlton/react-keep-visible.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/react-keep-visible.umd.cjs",
"module": "./dist/react-keep-visible.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-keep-visible.js",
"require": "./dist/react-peek-element.umd.cjs"
}
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"dependencies": {},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sass": "^1.95.1",
"simpl-grid": "2.0.14",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4"
}
}