UNPKG

@opensaas/stack-ui

Version:

Composable React UI components for OpenSaas Stack

111 lines 3.31 kB
{ "name": "@opensaas/stack-ui", "version": "0.3.0", "description": "Composable React UI components for OpenSaas Stack", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./primitives": { "types": "./dist/primitives/index.d.ts", "default": "./dist/primitives/index.js" }, "./fields": { "types": "./dist/components/fields/index.d.ts", "default": "./dist/components/fields/index.js" }, "./standalone": { "types": "./dist/components/standalone/index.d.ts", "default": "./dist/components/standalone/index.js" }, "./server": { "types": "./dist/server/index.d.ts", "default": "./dist/server/index.js" }, "./lib/utils": { "types": "./dist/lib/utils.d.ts", "default": "./dist/lib/utils.js" }, "./styles": "./dist/styles/globals.css" }, "keywords": [ "opensaas", "admin", "ui", "nextjs", "react" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/OpenSaasAU/stack.git", "directory": "packages/ui" }, "homepage": "https://stack.opensaas.au", "bugs": { "url": "https://github.com/OpenSaasAU/stack/issues" }, "peerDependencies": { "@opensaas/stack-core": "^0", "next": "^15.0.0 || ^16.0.0", "react": "^19.0.0", "react-dom": "^19.0.0" }, "dependencies": { "@radix-ui/react-checkbox": "^1.3.3", "@radix-ui/react-dialog": "^1.1.15", "@radix-ui/react-dropdown-menu": "^2.1.16", "@radix-ui/react-label": "^2.1.7", "@radix-ui/react-popover": "^1.1.15", "@radix-ui/react-select": "^2.2.6", "@radix-ui/react-separator": "^1.1.7", "@radix-ui/react-slot": "^1.2.3", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "date-fns": "^4.1.0", "lucide-react": "^0.554.0", "react-hook-form": "^7.54.2", "tailwind-merge": "^3.3.1" }, "devDependencies": { "@tailwindcss/postcss": "^4.0.0", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.1.0", "@testing-library/user-event": "^14.5.2", "@types/node": "^24.7.2", "@types/react": "^19.2.2", "@types/react-dom": "^19.2.2", "@vitejs/plugin-react": "^5.0.0", "@vitest/browser": "^4.0.9", "@vitest/browser-playwright": "^4.0.9", "@vitest/coverage-v8": "^4.0.4", "happy-dom": "^20.0.0", "next": "^16.0.1", "playwright": "^1.56.1", "postcss": "^8.4.49", "postcss-cli": "^11.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tailwindcss": "^4.0.0", "typescript": "^5.9.3", "vitest": "^4.0.0", "@opensaas/stack-core": "0.3.0" }, "scripts": { "build": "tsc && npm run build:css", "build:css": "mkdir -p dist/styles && postcss ./src/styles/globals.css -o ./dist/styles/globals.css", "dev": "tsc --watch", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", "test:browser": "BROWSER_TEST=true vitest --run", "test:browser:ui": "BROWSER_TEST=true vitest --ui", "test:browser:coverage": "BROWSER_TEST=true vitest --coverage --run", "clean": "rm -rf .turbo dist tsconfig.tsbuildinfo" } }