feat(v0.13.2): consolidation design system — SUMI tokens, package, stories
TASK-DS-001: Migrated packages/design-system/ from legacy Kōdō to SUMI v2.0
- New src/ structure with proper TypeScript exports
- Component type registry documenting all 40+ UI components
- cn() utility re-export
- package.json with exports map for tokens subpaths
TASK-DS-002: Extracted design tokens as TypeScript objects
- tokens/colors.ts: backgrounds, surfaces, text, pigments, semantic, glass, shadows, light theme
- tokens/typography.ts: font families, sizes, weights, line heights, letter spacings
- tokens/spacing.ts: spacing scale, radius, z-index, layout
- tokens/motion.ts: durations and easing functions
TASK-DS-003: Added missing Storybook stories
- EmptyState.stories.tsx (8 variants: default, icon, action, search, sizes, card, centered)
- ButtonLoading.stories.tsx (6 variants: default, loading, text, destructive, outline, small)
- ContentFadeIn.stories.tsx (2 variants: default, card)
- DesignTokens.stories.tsx (visual token reference: pigments, backgrounds, text, typography, spacing, radius)
- Total: 42 → 46 stories for UI components + design token showcase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 08:45:09 +00:00
|
|
|
{
|
|
|
|
|
"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",
|
2026-04-27 02:52:15 +00:00
|
|
|
"./tokens/motion": "./src/tokens/motion.ts",
|
|
|
|
|
"./tokens.css": "./dist/tokens.css",
|
|
|
|
|
"./dist/tokens.ts": "./dist/tokens.ts"
|
feat(v0.13.2): consolidation design system — SUMI tokens, package, stories
TASK-DS-001: Migrated packages/design-system/ from legacy Kōdō to SUMI v2.0
- New src/ structure with proper TypeScript exports
- Component type registry documenting all 40+ UI components
- cn() utility re-export
- package.json with exports map for tokens subpaths
TASK-DS-002: Extracted design tokens as TypeScript objects
- tokens/colors.ts: backgrounds, surfaces, text, pigments, semantic, glass, shadows, light theme
- tokens/typography.ts: font families, sizes, weights, line heights, letter spacings
- tokens/spacing.ts: spacing scale, radius, z-index, layout
- tokens/motion.ts: durations and easing functions
TASK-DS-003: Added missing Storybook stories
- EmptyState.stories.tsx (8 variants: default, icon, action, search, sizes, card, centered)
- ButtonLoading.stories.tsx (6 variants: default, loading, text, destructive, outline, small)
- ContentFadeIn.stories.tsx (2 variants: default, card)
- DesignTokens.stories.tsx (visual token reference: pigments, backgrounds, text, typography, spacing, radius)
- Total: 42 → 46 stories for UI components + design token showcase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 08:45:09 +00:00
|
|
|
},
|
|
|
|
|
"files": [
|
2026-04-27 02:52:15 +00:00
|
|
|
"src/",
|
|
|
|
|
"tokens/",
|
|
|
|
|
"dist/",
|
|
|
|
|
"style-dictionary.config.mjs"
|
feat(v0.13.2): consolidation design system — SUMI tokens, package, stories
TASK-DS-001: Migrated packages/design-system/ from legacy Kōdō to SUMI v2.0
- New src/ structure with proper TypeScript exports
- Component type registry documenting all 40+ UI components
- cn() utility re-export
- package.json with exports map for tokens subpaths
TASK-DS-002: Extracted design tokens as TypeScript objects
- tokens/colors.ts: backgrounds, surfaces, text, pigments, semantic, glass, shadows, light theme
- tokens/typography.ts: font families, sizes, weights, line heights, letter spacings
- tokens/spacing.ts: spacing scale, radius, z-index, layout
- tokens/motion.ts: durations and easing functions
TASK-DS-003: Added missing Storybook stories
- EmptyState.stories.tsx (8 variants: default, icon, action, search, sizes, card, centered)
- ButtonLoading.stories.tsx (6 variants: default, loading, text, destructive, outline, small)
- ContentFadeIn.stories.tsx (2 variants: default, card)
- DesignTokens.stories.tsx (visual token reference: pigments, backgrounds, text, typography, spacing, radius)
- Total: 42 → 46 stories for UI components + design token showcase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 08:45:09 +00:00
|
|
|
],
|
|
|
|
|
"scripts": {
|
2026-04-27 02:52:15 +00:00
|
|
|
"build": "node style-dictionary.config.mjs",
|
|
|
|
|
"build:tokens": "node style-dictionary.config.mjs",
|
feat(v0.13.2): consolidation design system — SUMI tokens, package, stories
TASK-DS-001: Migrated packages/design-system/ from legacy Kōdō to SUMI v2.0
- New src/ structure with proper TypeScript exports
- Component type registry documenting all 40+ UI components
- cn() utility re-export
- package.json with exports map for tokens subpaths
TASK-DS-002: Extracted design tokens as TypeScript objects
- tokens/colors.ts: backgrounds, surfaces, text, pigments, semantic, glass, shadows, light theme
- tokens/typography.ts: font families, sizes, weights, line heights, letter spacings
- tokens/spacing.ts: spacing scale, radius, z-index, layout
- tokens/motion.ts: durations and easing functions
TASK-DS-003: Added missing Storybook stories
- EmptyState.stories.tsx (8 variants: default, icon, action, search, sizes, card, centered)
- ButtonLoading.stories.tsx (6 variants: default, loading, text, destructive, outline, small)
- ContentFadeIn.stories.tsx (2 variants: default, card)
- DesignTokens.stories.tsx (visual token reference: pigments, backgrounds, text, typography, spacing, radius)
- Total: 42 → 46 stories for UI components + design token showcase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 08:45:09 +00:00
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"clsx": "^2.0.0",
|
|
|
|
|
"tailwind-merge": "^3.0.0"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"react": ">=18",
|
|
|
|
|
"react-dom": ">=18"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-04-27 02:52:15 +00:00
|
|
|
"style-dictionary": "^4.4.0",
|
feat(v0.13.2): consolidation design system — SUMI tokens, package, stories
TASK-DS-001: Migrated packages/design-system/ from legacy Kōdō to SUMI v2.0
- New src/ structure with proper TypeScript exports
- Component type registry documenting all 40+ UI components
- cn() utility re-export
- package.json with exports map for tokens subpaths
TASK-DS-002: Extracted design tokens as TypeScript objects
- tokens/colors.ts: backgrounds, surfaces, text, pigments, semantic, glass, shadows, light theme
- tokens/typography.ts: font families, sizes, weights, line heights, letter spacings
- tokens/spacing.ts: spacing scale, radius, z-index, layout
- tokens/motion.ts: durations and easing functions
TASK-DS-003: Added missing Storybook stories
- EmptyState.stories.tsx (8 variants: default, icon, action, search, sizes, card, centered)
- ButtonLoading.stories.tsx (6 variants: default, loading, text, destructive, outline, small)
- ContentFadeIn.stories.tsx (2 variants: default, card)
- DesignTokens.stories.tsx (visual token reference: pigments, backgrounds, text, typography, spacing, radius)
- Total: 42 → 46 stories for UI components + design token showcase
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 08:45:09 +00:00
|
|
|
"typescript": "^5.9.0"
|
|
|
|
|
},
|
|
|
|
|
"license": "UNLICENSED"
|
|
|
|
|
}
|