Files
trackgo-fe/packages/ui/package.json
T
Firman Ramdhani d4114702a0 feat: add form components with styles for input, textarea, and input number
- Introduced new styles for form components including input, textarea, and input number.
- Created a new TextArea component with status and variant support.
- Updated global styles to include form variables and component styles.
- Added type definitions for form components to ensure consistency.
- Integrated new components into the main component index for easy access.
2026-01-26 11:45:28 +07:00

38 lines
949 B
JSON

{
"name": "@repo/ui",
"version": "0.0.0",
"exports": {
".": "./src/index.ts",
"./global.css": "./src/globals.css"
},
"license": "MIT",
"scripts": {
"lint": "eslint \"**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@repo/utils": "workspace:*",
"@tailwindcss/vite": "^4.1.18",
"rc-field-form": "^2.7.1",
"rc-input": "^1.8.0",
"rc-input-number": "^9.5.0",
"rc-textarea": "^1.10.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^8.57.1",
"typescript": "5.5.4",
"vite": "^5.1.4",
"vitest": "^4.0.17"
}
}