{"_id":"@amine-benettaj/devoxx-design-system","name":"@amine-benettaj/devoxx-design-system","dist-tags":{"latest":"0.0.1"},"versions":{"0.0.1":{"name":"@amine-benettaj/devoxx-design-system","private":false,"version":"0.0.1","type":"module","main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./style.css":"./dist/style.css"},"sideEffects":["*.css"],"scripts":{"dev":"vite","build":"tsc --project tsconfig.build.json && vite build","lint":"eslint .","preview":"vite preview","storybook":"storybook dev -p 6006","build-storybook":"storybook build"},"dependencies":{"@tailwindcss/vite":"^4.1.17","clsx":"^2.1.1","react":"^19.2.0","react-dom":"^19.2.0","tailwind-merge":"^3.4.0","tailwindcss":"^4.1.17","vite-plugin-dts":"^4.5.4"},"devDependencies":{"@chromatic-com/storybook":"^4.1.2","@eslint/js":"^9.39.1","@storybook/addon-a11y":"^10.0.7","@storybook/addon-docs":"^10.0.7","@storybook/addon-vitest":"^10.0.7","@storybook/react-vite":"^10.0.7","@types/node":"^24.10.0","@types/react":"^19.2.2","@types/react-dom":"^19.2.2","@vitejs/plugin-react":"^5.1.0","@vitest/browser-playwright":"^4.0.8","@vitest/coverage-v8":"^4.0.8","eslint":"^9.39.1","eslint-plugin-react-hooks":"^7.0.1","eslint-plugin-react-refresh":"^0.4.24","eslint-plugin-storybook":"^10.0.7","globals":"^16.5.0","playwright":"^1.56.1","storybook":"^10.0.7","typescript":"~5.9.3","typescript-eslint":"^8.46.3","vite":"^7.2.2","vitest":"^4.0.8"},"_id":"@amine-benettaj/devoxx-design-system@0.0.1","description":"This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.","_nodeVersion":"22.21.0","_npmVersion":"10.9.4","dist":{"integrity":"sha512-0ujhBgOiY/gvgeOsGuiI+RxSBBwbWTQ40kdO7a4SPwgNnZuGbgzX8u47W9AMVAy3CXbYaKmLGeiLb9bKJNAPMA==","shasum":"fa2fd4e42f3dbef9b318e3624c2955d7edd79248","tarball":"https://registry.npmjs.org/@amine-benettaj/devoxx-design-system/-/devoxx-design-system-0.0.1.tgz","fileCount":20,"unpackedSize":116559,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDwaq0Xhoho2VBHYf1I/rSshwYLF2IZpo3vjhYV1rx6/AIhAK3L5SsiC4q/OKThW7s2uZxK6LEmOm5R1ZaURdUTX6xJ"}]},"_npmUser":{"name":"amine-benettaj","email":"benettajamine@gmail.com"},"directories":{},"maintainers":[{"name":"amine-benettaj","email":"benettajamine@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/devoxx-design-system_0.0.1_1763031218818_0.2645126049770925"},"_hasShrinkwrap":false}},"time":{"created":"2025-11-13T10:53:38.742Z","0.0.1":"2025-11-13T10:53:39.012Z","modified":"2025-11-13T10:53:39.272Z"},"maintainers":[{"name":"amine-benettaj","email":"benettajamine@gmail.com"}],"description":"This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.","readme":"# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## React Compiler\n\nThe React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:\n\n```js\nexport default defineConfig([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n\n      // Remove tseslint.configs.recommended and replace with this\n      tseslint.configs.recommendedTypeChecked,\n      // Alternatively, use this for stricter rules\n      tseslint.configs.strictTypeChecked,\n      // Optionally, add this for stylistic rules\n      tseslint.configs.stylisticTypeChecked,\n\n      // Other configs...\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n\nYou can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:\n\n```js\n// eslint.config.js\nimport reactX from 'eslint-plugin-react-x'\nimport reactDom from 'eslint-plugin-react-dom'\n\nexport default defineConfig([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n      // Enable lint rules for React\n      reactX.configs['recommended-typescript'],\n      // Enable lint rules for React DOM\n      reactDom.configs.recommended,\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n","readmeFilename":"README.md","_rev":"1-8e275c0d3faee40e46ead1f798c97c1f"}