@duonghieu0712z/create-tauri-vue-template 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +74 -0
  3. package/assets/vscode-settings.json +16 -0
  4. package/dist/bin/index.js +83 -0
  5. package/dist/cli/color.js +25 -0
  6. package/dist/cli/files.js +18 -0
  7. package/dist/cli/project.js +48 -0
  8. package/dist/cli/prompts.js +44 -0
  9. package/dist/cli/release-workflow.js +13 -0
  10. package/dist/cli/scaffold.js +30 -0
  11. package/dist/cli/text.js +24 -0
  12. package/dist/cli/types.js +1 -0
  13. package/dist/scripts/prepare-template.js +67 -0
  14. package/package.json +39 -0
  15. package/template/.editorconfig +8 -0
  16. package/template/.gitattributes +5 -0
  17. package/template/.github/dependabot.yml +38 -0
  18. package/template/.github/workflows/code-quality.yml +70 -0
  19. package/template/.github/workflows/release.yml +112 -0
  20. package/template/.husky/pre-commit +7 -0
  21. package/template/.oxfmtrc.json +36 -0
  22. package/template/.oxlintrc.json +24 -0
  23. package/template/.vscode/extensions.json +11 -0
  24. package/template/CHANGELOG.md +12 -0
  25. package/template/LICENSE +21 -0
  26. package/template/README.md +126 -0
  27. package/template/components.json +24 -0
  28. package/template/eslint.config.ts +32 -0
  29. package/template/index.html +14 -0
  30. package/template/package.json +74 -0
  31. package/template/pnpm-lock.yaml +3953 -0
  32. package/template/pnpm-workspace.yaml +3 -0
  33. package/template/public/favicon.ico +0 -0
  34. package/template/rust-toolchain.toml +2 -0
  35. package/template/scripts/bump-version.js +42 -0
  36. package/template/scripts/rename-app.js +137 -0
  37. package/template/scripts/utils.js +59 -0
  38. package/template/src/App.vue +71 -0
  39. package/template/src/assets/fonts/Geist/Geist-Italic[wght].woff2 +0 -0
  40. package/template/src/assets/fonts/Geist/Geist[wght].woff2 +0 -0
  41. package/template/src/assets/images/tauri.svg +6 -0
  42. package/template/src/assets/images/vite.svg +1 -0
  43. package/template/src/assets/images/vue.svg +1 -0
  44. package/template/src/generated/auto-import.d.ts +139 -0
  45. package/template/src/generated/bindings.ts +9 -0
  46. package/template/src/lib/utils.ts +8 -0
  47. package/template/src/main.ts +9 -0
  48. package/template/src/styles/fonts.css +15 -0
  49. package/template/src/styles/globals.css +130 -0
  50. package/template/src/vite-env.d.ts +7 -0
  51. package/template/src-tauri/Cargo.lock +6328 -0
  52. package/template/src-tauri/Cargo.toml +41 -0
  53. package/template/src-tauri/build.rs +3 -0
  54. package/template/src-tauri/capabilities/default.json +7 -0
  55. package/template/src-tauri/icons/128x128.png +0 -0
  56. package/template/src-tauri/icons/128x128@2x.png +0 -0
  57. package/template/src-tauri/icons/32x32.png +0 -0
  58. package/template/src-tauri/icons/Square107x107Logo.png +0 -0
  59. package/template/src-tauri/icons/Square142x142Logo.png +0 -0
  60. package/template/src-tauri/icons/Square150x150Logo.png +0 -0
  61. package/template/src-tauri/icons/Square284x284Logo.png +0 -0
  62. package/template/src-tauri/icons/Square30x30Logo.png +0 -0
  63. package/template/src-tauri/icons/Square310x310Logo.png +0 -0
  64. package/template/src-tauri/icons/Square44x44Logo.png +0 -0
  65. package/template/src-tauri/icons/Square71x71Logo.png +0 -0
  66. package/template/src-tauri/icons/Square89x89Logo.png +0 -0
  67. package/template/src-tauri/icons/StoreLogo.png +0 -0
  68. package/template/src-tauri/icons/icon.icns +0 -0
  69. package/template/src-tauri/icons/icon.ico +0 -0
  70. package/template/src-tauri/icons/icon.png +0 -0
  71. package/template/src-tauri/src/command/mod.rs +13 -0
  72. package/template/src-tauri/src/lib.rs +54 -0
  73. package/template/src-tauri/src/main.rs +6 -0
  74. package/template/src-tauri/tauri.conf.json +37 -0
  75. package/template/tsconfig.app.json +11 -0
  76. package/template/tsconfig.json +11 -0
  77. package/template/tsconfig.node.json +11 -0
  78. package/template/vite.config.ts +42 -0
@@ -0,0 +1,7 @@
1
+ /// <reference types="vite/client" />
2
+
3
+ declare module '*.vue' {
4
+ import type { DefineComponent } from 'vue';
5
+ const component: DefineComponent<{}, {}, any>;
6
+ export default component;
7
+ }