veza/packages/design-system/package.json

35 lines
859 B
JSON
Raw Normal View History

{
"name": "@veza/design-system",
"version": "2.0.0",
"description": "SUMI Design System — Design tokens, utilities, and component re-exports for the Veza platform",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./tokens": "./src/tokens/index.ts",
"./tokens/colors": "./src/tokens/colors.ts",
"./tokens/typography": "./src/tokens/typography.ts",
"./tokens/spacing": "./src/tokens/spacing.ts",
"./tokens/motion": "./src/tokens/motion.ts"
},
"files": [
"src/"
],
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"clsx": "^2.0.0",
"tailwind-merge": "^3.0.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"typescript": "^5.9.0"
},
"license": "UNLICENSED"
}