mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Engel Nyst <engel.nyst@gmail.com> Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
104 lines
2.4 KiB
JSON
104 lines
2.4 KiB
JSON
{
|
|
"name": "@openhands/ui",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Mislav Lukach",
|
|
"email": "mislavlukach@gmail.com"
|
|
},
|
|
{
|
|
"name": "Stephan Psaras",
|
|
"email": "stephan@all-hands.dev"
|
|
}
|
|
],
|
|
"version": "1.0.0-beta.9",
|
|
"description": "OpenHands UI Components",
|
|
"keywords": [
|
|
"openhands",
|
|
"ui",
|
|
"components",
|
|
"react",
|
|
"typescript",
|
|
"tailwindcss"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./styles": "./dist/index.css"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/OpenHands/OpenHands.git",
|
|
"directory": "openhands-ui"
|
|
},
|
|
"homepage": "https://www.all-hands.dev/",
|
|
"bugs": {
|
|
"url": "https://github.com/OpenHands/OpenHands/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@chromatic-com/storybook": "^4.0.0",
|
|
"@storybook/addon-a11y": "^9.0.12",
|
|
"@storybook/addon-docs": "^9.0.12",
|
|
"@storybook/addon-onboarding": "^9.0.12",
|
|
"@storybook/addon-vitest": "^9.0.12",
|
|
"@storybook/react-vite": "^9.0.12",
|
|
"@tailwindcss/vite": "^4.1.10",
|
|
"@types/bun": "latest",
|
|
"@types/deep-equal": "^1.0.4",
|
|
"@vitejs/plugin-react": "^4.5.2",
|
|
"@vitest/browser": "^3.2.4",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"playwright": "^1.53.1",
|
|
"storybook": "^9.0.12",
|
|
"typescript": "^5.8.3",
|
|
"vite-plugin-dts": "^4.5.4",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=19.1.0",
|
|
"react-dom": ">=19.1.0",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^4.1.10",
|
|
"tailwind-scrollbar": "^4.0.2"
|
|
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/react": "^0.27.12",
|
|
"clsx": "^2.1.1",
|
|
"deep-equal": "^2.2.3",
|
|
"focus-trap-react": "^11.0.4",
|
|
"react-bootstrap-icons": "^1.11.6",
|
|
"react-select": "^5.10.2",
|
|
"sonner": "^2.0.6",
|
|
"tailwind-scrollbar": "^4.0.2"
|
|
},
|
|
"scripts": {
|
|
"dev": "storybook dev -p 6006",
|
|
"build:sb": "storybook build",
|
|
"clean": "rm -rf dist",
|
|
"build": "vite build",
|
|
"prepublishOnly": "bun run clean && bun run build"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.2.0",
|
|
"node": ">=22.0.0",
|
|
"npm": ">=10.0.0"
|
|
}
|
|
}
|