{"_id":"@actview/react-curd-demo","name":"@actview/react-curd-demo","dist-tags":{"latest":"1.0.1"},"versions":{"1.0.1":{"name":"@actview/react-curd-demo","version":"1.0.1","type":"module","scripts":{"dev":"vite","build":"tsc -b && vite build","lint":"eslint .","preview":"vite preview","i18n:scan":"tsx packages/i18n/src/cli/scan --output src/i18n/scan-result.json","i18n:sync":"tsx packages/i18n/src/cli/sync"},"publishConfig":{"access":"public"},"dependencies":{"@ant-design/icons":"^5.6.1","@i18n/collector":"link:./packages/i18n","@types/classnames":"^2.3.0","@types/fs-extra":"^11.0.4","antd":"^5.29.3","axios":"^1.13.2","classnames":"^2.5.1","csv-parse":"^6.1.0","i18next":"^25.8.18","react":"^19.2.0","react-dom":"^19.2.0","react-i18next":"^16.5.8","react-router-dom":"^7.12.0","zustand":"^5.0.10"},"devDependencies":{"@eslint/js":"^9.39.1","@tailwindcss/vite":"^4.1.18","@types/node":"^24.10.1","@types/react":"^19.2.5","@types/react-dom":"^19.2.3","@vitejs/plugin-react":"^5.1.1","autoprefixer":"^10.4.23","eslint":"^9.39.1","eslint-plugin-react-hooks":"^7.0.1","eslint-plugin-react-refresh":"^0.4.24","fs-extra":"^11.3.3","globals":"^16.5.0","handlebars":"^4.7.8","inquirer":"^13.2.0","postcss":"^8.5.6","rollup-plugin-visualizer":"^7.0.1","tailwindcss":"^4.1.18","tsx":"^4.21.0","typescript":"~5.9.3","typescript-eslint":"^8.46.4","vite":"^7.2.4","vite-plugin-cdn-import":"^1.0.1"},"_id":"@actview/react-curd-demo@1.0.1","gitHead":"034941343e9a23c65b718b09591e0b91e1796a27","description":"This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.","_nodeVersion":"22.21.1","_npmVersion":"10.9.4","dist":{"integrity":"sha512-cIj7R7bzzxz9uj9EQ1f9Nu0yZlo1Co78qh5o/SvL/Xysh/XsEKssLopkmAI+Ep+1teSxChnJeNSSq/FWgSuEAQ==","shasum":"34e3ad5e928f250167d95d9f1c91ffd9c291c01e","tarball":"https://registry.npmjs.org/@actview/react-curd-demo/-/react-curd-demo-1.0.1.tgz","fileCount":7,"unpackedSize":1113021,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDXt1VDmzrTRroZHdS3jLL4l/YLKuOPxiEqysyDwbL+0gIhAKjRq7gl9z3xLftWOHBOKWhIgRXpbIeE5GoY1H+o5ZcE"}]},"_npmUser":{"name":"scliuyilin","email":"scliuyilin@163.com"},"directories":{},"maintainers":[{"name":"scliuyilin","email":"scliuyilin@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/react-curd-demo_1.0.1_1773914163148_0.920593518010588"},"_hasShrinkwrap":false}},"time":{"created":"2026-03-19T09:56:03.017Z","1.0.1":"2026-03-19T09:56:03.328Z","modified":"2026-03-19T09:56:03.620Z"},"maintainers":[{"name":"scliuyilin","email":"scliuyilin@163.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-0b430be525689997fd1be346b27b3613"}