@atawi/react-popover 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +195 -0
- package/dist/index.js +1429 -0
- package/dist/index.js.map +1 -0
- package/dist/index.umd.cjs +11 -0
- package/dist/index.umd.cjs.map +1 -0
- package/dist/style.css +1 -0
- package/package.json +85 -0
package/package.json
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
{
|
2
|
+
"name": "@atawi/react-popover",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "A fully-featured, accessible, and customizable popover component for React applications",
|
5
|
+
"type": "module",
|
6
|
+
"main": "dist/index.js",
|
7
|
+
"module": "dist/index.js",
|
8
|
+
"types": "dist/index.d.ts",
|
9
|
+
"sideEffects": false,
|
10
|
+
"files": [
|
11
|
+
"dist",
|
12
|
+
"README.md",
|
13
|
+
"LICENSE"
|
14
|
+
],
|
15
|
+
"scripts": {
|
16
|
+
"dev": "vite",
|
17
|
+
"build": "tsc && vite build",
|
18
|
+
"build:lib": "tsc --project tsconfig.lib.json && vite build --config vite.lib.config.ts",
|
19
|
+
"lint": "eslint .",
|
20
|
+
"preview": "vite preview",
|
21
|
+
"test": "vitest",
|
22
|
+
"coverage": "vitest run --coverage",
|
23
|
+
"prepublishOnly": "npm run build:lib",
|
24
|
+
"docs:dev": "vite",
|
25
|
+
"docs:build": "vite build",
|
26
|
+
"docs:preview": "vite preview"
|
27
|
+
},
|
28
|
+
"dependencies": {
|
29
|
+
"react": "^18.3.1",
|
30
|
+
"react-dom": "^18.3.1",
|
31
|
+
"react-router-dom": "^6.22.1"
|
32
|
+
},
|
33
|
+
"peerDependencies": {
|
34
|
+
"react": ">=16.8.0",
|
35
|
+
"react-dom": ">=16.8.0"
|
36
|
+
},
|
37
|
+
"devDependencies": {
|
38
|
+
"@eslint/js": "^9.9.1",
|
39
|
+
"@testing-library/jest-dom": "^6.4.2",
|
40
|
+
"@testing-library/react": "^14.2.1",
|
41
|
+
"@testing-library/user-event": "^14.5.2",
|
42
|
+
"@types/react": "^18.3.5",
|
43
|
+
"@types/react-dom": "^18.3.0",
|
44
|
+
"@types/react-syntax-highlighter": "^15.5.11",
|
45
|
+
"@vitejs/plugin-react": "^4.3.3",
|
46
|
+
"@vitest/coverage-v8": "^2.1.5",
|
47
|
+
"eslint": "^9.9.1",
|
48
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
49
|
+
"eslint-plugin-react-refresh": "^0.4.11",
|
50
|
+
"globals": "^15.9.0",
|
51
|
+
"jsdom": "^24.0.0",
|
52
|
+
"lucide-react": "^0.460.0",
|
53
|
+
"react-syntax-highlighter": "^15.6.1",
|
54
|
+
"sass": "^1.81.0",
|
55
|
+
"terser": "^5.36.0",
|
56
|
+
"typescript": "^5.5.3",
|
57
|
+
"typescript-eslint": "^8.15.0",
|
58
|
+
"vite": "^5.4.11",
|
59
|
+
"vitest": "^2.1.5"
|
60
|
+
},
|
61
|
+
"keywords": [
|
62
|
+
"react",
|
63
|
+
"popover",
|
64
|
+
"tooltip",
|
65
|
+
"dropdown",
|
66
|
+
"menu",
|
67
|
+
"overlay",
|
68
|
+
"accessible",
|
69
|
+
"aria",
|
70
|
+
"typescript"
|
71
|
+
],
|
72
|
+
"author": "Atawi",
|
73
|
+
"license": "MIT",
|
74
|
+
"repository": {
|
75
|
+
"type": "git",
|
76
|
+
"url": "git+https://github.com/ahmedalatawi/react-popover.git"
|
77
|
+
},
|
78
|
+
"bugs": {
|
79
|
+
"url": "https://github.com/ahmedalatawi/react-popover/issues"
|
80
|
+
},
|
81
|
+
"homepage": "https://github.com/ahmedalatawi/react-popover#readme",
|
82
|
+
"publishConfig": {
|
83
|
+
"access": "public"
|
84
|
+
}
|
85
|
+
}
|