-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "@ozbart/react-mini-search",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"scripts": {
"build": "pnpm run build:js && pnpm run build:css ",
"build:js": "tsup",
"build:css": "tailwindcss -i ./src/global.css -o ./dist/styles.css --minify",
"format": "biome format src --write",
"check": "biome check --apply"
},
"keywords": [],
"author": "https://github.com/ozimmortal",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@tailwindcss/cli": "^4.1.14",
"tailwindcss": "^4.1.14",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"minisearch": "^7.2.0",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3"
}
}