Aligns tooling packages with the core-* naming convention used by all other foundation packages (core-shared, core-cms, core-api, core-trpc, core-ui). Updates ~50 files: package.json names, devDependencies, tsconfig extends, eslint.config imports, vitest.config imports, AGENTS.md references, and the boundaries plugin patterns to match the new paths. The tooling-specific patterns in boundaries/elements are now ordered BEFORE the broader core-* pattern to ensure correct first-match-wins behavior. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
28 lines
706 B
JSON
28 lines
706 B
JSON
{
|
|
"name": "@repo/storybook",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "echo 'Storybook build — use pnpm dev for development'",
|
|
"build:storybook": "storybook build",
|
|
"dev": "storybook dev -p 6006",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@repo/core-ui": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/core-eslint": "workspace:*",
|
|
"@repo/core-typescript": "workspace:*",
|
|
"@storybook/addon-essentials": "^8.6.0",
|
|
"@storybook/react-vite": "^8.6.0",
|
|
"@tailwindcss/vite": "^4.1.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"storybook": "^8.6.0",
|
|
"tailwindcss": "^4.1.0",
|
|
"vite": "^6.3.0"
|
|
}
|
|
}
|