@mks2508/sidebar-headless 0.1.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/package.json ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "@mks2508/sidebar-headless",
3
+ "version": "0.1.0",
4
+ "description": "Headless sidebar component for React with advanced animations, keyboard navigation, and full WAI-ARIA accessibility",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./styles.css": "./dist/index.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "sideEffects": [
23
+ "*.css"
24
+ ],
25
+ "scripts": {
26
+ "dev": "cd playground && vite",
27
+ "dev:clean": "killall -9 node || true && cd playground && vite",
28
+ "build": "tsup",
29
+ "build:watch": "tsup --watch",
30
+ "preview": "cd playground && vite preview",
31
+ "typecheck": "tsc --noEmit",
32
+ "prepublishOnly": "bun run build && bun run typecheck"
33
+ },
34
+ "keywords": [
35
+ "react",
36
+ "sidebar",
37
+ "headless",
38
+ "component",
39
+ "navigation",
40
+ "ui",
41
+ "typescript",
42
+ "accessibility",
43
+ "a11y",
44
+ "wai-aria",
45
+ "keyboard-navigation",
46
+ "glassmorphism",
47
+ "fluid-animation"
48
+ ],
49
+ "author": "MKS2508",
50
+ "license": "MIT",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/mks2508/sidebar-headless.git"
54
+ },
55
+ "bugs": {
56
+ "url": "https://github.com/mks2508/sidebar-headless/issues"
57
+ },
58
+ "homepage": "https://github.com/mks2508/sidebar-headless#readme",
59
+ "peerDependencies": {
60
+ "react": ">=18.0.0",
61
+ "react-dom": ">=18.0.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "@liquid-svg-glass/core": {
65
+ "optional": true
66
+ },
67
+ "@liquid-svg-glass/react": {
68
+ "optional": true
69
+ }
70
+ },
71
+ "dependencies": {
72
+ "clsx": "^2.1.1",
73
+ "tailwind-merge": "^3.3.1"
74
+ },
75
+ "devDependencies": {
76
+ "@base-ui-components/react": "^1.0.0-beta.4",
77
+ "@liquid-svg-glass/react": "file:./lib/@liquid-svg-glass/react",
78
+ "@radix-ui/react-label": "^2.1.7",
79
+ "@radix-ui/react-select": "^2.2.6",
80
+ "@radix-ui/react-slider": "^1.3.6",
81
+ "@radix-ui/react-slot": "^1.2.3",
82
+ "@tailwindcss/vite": "^4.1.16",
83
+ "@types/bun": "latest",
84
+ "@types/react": "^19",
85
+ "@types/react-dom": "^19",
86
+ "@vitejs/plugin-react": "^5.1.0",
87
+ "bun-plugin-tailwind": "^0.1.2",
88
+ "class-variance-authority": "^0.7.1",
89
+ "lucide-react": "^0.545.0",
90
+ "motion": "^12.23.24",
91
+ "react": "^19",
92
+ "react-dom": "^19",
93
+ "tailwindcss": "^4.1.11",
94
+ "tsup": "^8.5.1",
95
+ "tw-animate-css": "^1.4.0",
96
+ "typescript": "^5.9.3",
97
+ "vite": "^7.1.12"
98
+ }
99
+ }