UNPKG

@codefast-ui/checkbox-group

Version:

Accessible checkbox group component built with React and Radix UI

102 lines 2.71 kB
{ "name": "@codefast-ui/checkbox-group", "version": "0.3.7", "description": "Accessible checkbox group component built with React and Radix UI", "keywords": [ "checkbox", "checkbox-group", "form", "ui", "component", "react", "radix-ui", "accessible", "typescript", "monorepo" ], "homepage": "https://github.com/codefastlabs/codefast/tree/main/packages/checkbox-group#readme", "bugs": { "url": "https://github.com/codefastlabs/codefast/issues" }, "repository": { "type": "git", "url": "git+https://github.com/codefastlabs/codefast.git", "directory": "packages/checkbox-group" }, "license": "MIT", "author": "Vuong Phan <mr.thevuong@gmail.com>", "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "CHANGELOG.md", "README.md", "LICENSE" ], "dependencies": { "@radix-ui/react-checkbox": "^1.3.3", "@radix-ui/react-context": "^1.1.2", "@radix-ui/react-direction": "^1.1.1", "@radix-ui/react-roving-focus": "^1.1.11", "@radix-ui/react-use-controllable-state": "^1.2.2" }, "devDependencies": { "@rsbuild/plugin-react": "^1.4.1", "@rslib/core": "^0.14.0", "@swc/core": "^1.13.19", "@swc/jest": "^0.2.39", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.8.0", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/jest": "^30.0.0", "@types/jest-axe": "^3.5.9", "@types/node": "^24.5.2", "eslint": "^9.36.0", "jest": "^30.1.3", "jest-axe": "^10.0.0", "jest-environment-jsdom": "^30.1.2", "ts-node": "^10.9.2", "typescript": "^5.9.2", "@codefast/eslint-config": "0.3.7", "@codefast/typescript-config": "0.3.7" }, "peerDependencies": { "@types/react": "^19.0", "@types/react-dom": "^19.0", "react": "^19.0", "react-dom": "^19.0" }, "peerDependenciesMeta": { "@types/react": { "optional": true }, "@types/react-dom": { "optional": true } }, "publishConfig": { "access": "public" }, "scripts": { "build": "rslib build", "check-types": "tsc --noEmit", "clean": "rm -rf dist", "dev": "rslib build --watch", "lint": "TIMING=1 eslint . --max-warnings 0", "lint:fix": "TIMING=1 eslint --max-warnings 0 --fix .", "test": "jest", "test:coverage": "jest --coverage", "test:coverage:ci": "jest --coverage --ci", "test:watch": "jest --watch" } }