create-lik-app 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. package/README.md +0 -0
  2. package/dist/index.mjs +119 -0
  3. package/index.js +3 -0
  4. package/package.json +39 -0
  5. package/templates/template-react/.husky/commit-msg +6 -0
  6. package/templates/template-react/.husky/lintstagedrc.cjs +8 -0
  7. package/templates/template-react/.husky/pre-commit +10 -0
  8. package/templates/template-react/.prettierignore +13 -0
  9. package/templates/template-react/.vscode/extensions.json +5 -0
  10. package/templates/template-react/README.md +24 -0
  11. package/templates/template-react/_gitignore +24 -0
  12. package/templates/template-react/commitlint.config.mjs +28 -0
  13. package/templates/template-react/config/uno/rules.ts +127 -0
  14. package/templates/template-react/eslint.config.mjs +44 -0
  15. package/templates/template-react/index.html +13 -0
  16. package/templates/template-react/package-lock.json +6460 -0
  17. package/templates/template-react/package.json +49 -0
  18. package/templates/template-react/pnpm-lock.yaml +4403 -0
  19. package/templates/template-react/prettier.config.mjs +11 -0
  20. package/templates/template-react/public/lic.svg +1263 -0
  21. package/templates/template-react/public/react.svg +1 -0
  22. package/templates/template-react/public/vite.svg +1 -0
  23. package/templates/template-react/src/App.tsx +18 -0
  24. package/templates/template-react/src/assets/react.svg +1 -0
  25. package/templates/template-react/src/components/Lic/index.tsx +12 -0
  26. package/templates/template-react/src/libs/gsap/index.ts +6 -0
  27. package/templates/template-react/src/main.tsx +12 -0
  28. package/templates/template-react/src/router/loaders.ts +10 -0
  29. package/templates/template-react/src/router/routes.tsx +36 -0
  30. package/templates/template-react/src/store/index.ts +2 -0
  31. package/templates/template-react/src/store/module/counter.ts +20 -0
  32. package/templates/template-react/src/store/module/favorite.ts +18 -0
  33. package/templates/template-react/src/styles/animation.css +8 -0
  34. package/templates/template-react/src/styles/mian.css +10 -0
  35. package/templates/template-react/src/styles/variable.css +21 -0
  36. package/templates/template-react/src/views/About/index.tsx +7 -0
  37. package/templates/template-react/src/views/Home/components/React/index.tsx +17 -0
  38. package/templates/template-react/src/views/Home/components/Vite/index.tsx +20 -0
  39. package/templates/template-react/src/views/Home/index.tsx +59 -0
  40. package/templates/template-react/src/views/Layout/index.tsx +22 -0
  41. package/templates/template-react/src/vite-env.d.ts +1 -0
  42. package/templates/template-react/tsconfig.app.json +36 -0
  43. package/templates/template-react/tsconfig.json +7 -0
  44. package/templates/template-react/tsconfig.node.json +24 -0
  45. package/templates/template-react/uno.config.ts +40 -0
  46. package/templates/template-react/vite.config.ts +28 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.