2025-11-07 22:34:54 -08:00
|
|
|
{
|
|
|
|
|
"name": "@the-order/ui",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"description": "Design system and UI components for The Order",
|
|
|
|
|
"main": "./src/index.ts",
|
|
|
|
|
"types": "./src/index.ts",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
|
|
|
"type-check": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"react": "^18.2.0",
|
2025-11-12 08:22:51 -08:00
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
|
"clsx": "^2.1.0",
|
|
|
|
|
"tailwind-merge": "^2.2.0",
|
|
|
|
|
"class-variance-authority": "^0.7.0"
|
2025-11-07 22:34:54 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/react": "^18.2.45",
|
|
|
|
|
"@types/react-dom": "^18.2.18",
|
|
|
|
|
"typescript": "^5.3.3"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"react": "^18.2.0",
|
|
|
|
|
"react-dom": "^18.2.0"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|