@v0xoss/number-input
Version:
The numeric input component is designed for users to enter a number, and increase or decrease the value using stepper buttons
69 lines • 1.94 kB
JSON
{
"name": "@v0xoss/number-input",
"version": "0.0.9",
"description": "The numeric input component is designed for users to enter a number, and increase or decrease the value using stepper buttons",
"keywords": [
"input",
"number",
"numeric input"
],
"author": "v0xOSS <oss-developers@vezham.com>",
"homepage": "https://vezham.com",
"license": "MIT",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vezham/heroui.git",
"directory": "packages/components/number-input"
},
"bugs": {
"url": "https://github.com/vezham/heroui/issues"
},
"peerDependencies": {
"react": ">=18 || >=19.0.0-rc.0",
"react-dom": ">=18 || >=19.0.0-rc.0",
"@v0xoss/system": ">=0.0.0",
"@v0xoss/theme": ">=0.0.0"
},
"dependencies": {
"@react-aria/focus": "3.20.5",
"@react-aria/i18n": "3.12.10",
"@react-aria/interactions": "3.25.3",
"@react-aria/numberfield": "3.11.16",
"@react-stately/numberfield": "3.9.13",
"@react-types/shared": "3.30.0",
"@react-types/numberfield": "3.8.12",
"@react-types/button": "3.12.2",
"@v0xoss/form": "0.0.9",
"@v0xoss/react-utils": "0.0.9",
"@v0xoss/shared-icons": "0.0.9",
"@v0xoss/button": "0.0.9",
"@v0xoss/shared-utils": "0.0.9",
"@v0xoss/use-safe-layout-effect": "0.0.9"
},
"clean-package": "../../../clean-package.config.json",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src --dts",
"build:fast": "tsup src",
"dev": "pnpm build:fast --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
}
}