UNPKG

@darksnow-ui/scroll-area

Version:
63 lines 1.46 kB
{ "name": "@darksnow-ui/scroll-area", "version": "1.0.0", "description": "scroll-area component for DarkSnow UI", "keywords": [ "react", "scroll-area", "component", "ui", "darksnow", "typescript" ], "author": "Anderson Rosa", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/darksnow-ui/darksnow-ui.git", "directory": "components/ui/scroll-area" }, "homepage": "https://github.com/darksnow-ui/darksnow-ui#readme", "bugs": { "url": "https://github.com/darksnow-ui/darksnow-ui/issues" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "README.md" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./styles.css": "./dist/styles.css" }, "peerDependencies": { "react": "^19.0.0", "react-dom": "^19.0.0" }, "dependencies": { "clsx": "^2.1.1" }, "devDependencies": { "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", "react": "^19.1.0", "react-dom": "^19.1.0", "tsup": "^8.5.0", "typescript": "^5.3.3" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "lint": "eslint src --ext ts,tsx", "lint:fix": "eslint src --ext ts,tsx --fix" } }