@diceui/combobox
Version:
Combobox is a component that allows users to select an option from a list of options.
64 lines • 1.36 kB
JSON
{
"name": "@diceui/combobox",
"version": "1.2.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"combobox",
"autocomplete",
"react-combobox",
"multi-select"
],
"author": "Sadman Sakib",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sadmann7/diceui",
"directory": "packages/combobox"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@floating-ui/react": "^0.27.4",
"@diceui/shared": "0.12.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup --clean",
"typecheck": "tsc --noEmit",
"test": "vitest run"
}
}