-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.04 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.04 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
85
86
87
88
89
90
{
"name": "thereactselect",
"version": "1.1.0",
"description": "A beautiful, fast, and accessible React Select component library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/themrsami/thereactselect.git"
},
"homepage": "https://thereactselect.vercel.app",
"bugs": {
"url": "https://github.com/themrsami/thereactselect/issues"
},
"author": "Usama <[email protected]> (https://github.com/themrsami)",
"license": "MIT",
"keywords": [
"react",
"select",
"dropdown",
"multiselect",
"combobox",
"typescript",
"tailwindcss",
"ui",
"component",
"thereactselect",
"react-select",
"form",
"input",
"accessible",
"searchable",
"multi-select",
"select-all",
"badges",
"dark-mode",
"lightweight",
"fast",
"beautiful",
"modern",
"customizable"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:lib": "tsup lib/index.ts --format cjs,esm --dts --clean",
"start": "next start",
"lint": "next lint",
"prepublishOnly": "pnpm run build:lib"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"use-debounce": "^10.0.5"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"next": "15.4.6",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-syntax-highlighter": "^15.6.1",
"tailwindcss": "^4",
"tsup": "^8.5.0",
"typescript": "^5"
}
}