mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "@nextui-org/use-aria-label",
|
|
"version": "0.0.0-dev-v2-20230622022515",
|
|
"description": "Based on react-aria label hook, it provides the accessibility implementation for labels and their associated elements. Labels provide context for user inputs.",
|
|
"keywords": [
|
|
"use-aria-label"
|
|
],
|
|
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
"homepage": "https://nextui.org",
|
|
"license": "MIT",
|
|
"main": "src/index.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nextui-org/nextui.git",
|
|
"directory": "packages/hooks/use-aria-label"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nextui-org/nextui/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src --dts",
|
|
"build:fast": "tsup src",
|
|
"dev": "yarn build:fast -- --watch",
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepack": "clean-package",
|
|
"postpack": "clean-package restore"
|
|
},
|
|
"dependencies": {
|
|
"@react-aria/utils": "^3.17.0",
|
|
"@react-types/shared": "^3.18.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"clean-package": "2.2.0",
|
|
"react": "^18.0.0"
|
|
},
|
|
"clean-package": "../../../clean-package.config.json",
|
|
"tsup": {
|
|
"clean": true,
|
|
"target": "es2019",
|
|
"format": [
|
|
"cjs",
|
|
"esm"
|
|
]
|
|
}
|
|
}
|