-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@b7r/react-navbar",
"version": "2.0.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "aleizabd",
"url": "https://x.com/_7coder"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": " tsup --watch",
"start": "vite",
"lint": "eslint .",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"bin": {
"add-navbar": "./cli.js"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/argparse": "^2.0.17",
"@types/node": "^22.13.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.6",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0"
},
"description": "This project is a flexible and customizable navigation bar built with React and Tailwind. It includes interactive components like dropdown menus.",
"repository": {
"type": "git",
"url": "git+https://github.com/Alizelabd/react-navbar.git"
},
"keywords": [
"react-nav",
"react-navbar",
"header",
"main-menu"
],
"bugs": {
"url": "https://github.com/Alizelabd/react-navbar/issues"
},
"homepage": "https://github.com/Alizelabd/react-navbar#readme",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@tailwindcss/vite": "^4.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"lucide-react": "^0.475.0",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"tailwind-merge": "^3.0.1"
},
"files": [
"dist",
"cli.js"
],
"publishConfig": {
"access": "public"
}
}