@codefast-ui/checkbox-group
Version:
Accessible checkbox group component built with React and Radix UI
109 lines • 2.88 kB
JSON
{
"name": "@codefast-ui/checkbox-group",
"version": "0.3.6",
"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>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.cts"
}
}
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-context": "^1.1.2",
"@radix-ui/react-direction": "^1.1.1",
"@radix-ui/react-roving-focus": "^1.1.10",
"@radix-ui/react-use-controllable-state": "^1.2.2"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.3.4",
"@rslib/core": "^0.10.5",
"@swc/core": "^1.12.14",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@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.0.14",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^30.0.4",
"jiti": "^2.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"@codefast/eslint-config": "0.3.6",
"@codefast/typescript-config": "0.3.6"
},
"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",
"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",
"type-check": "tsc --noEmit"
}
}