chore: scaffold linhelp applications

This commit is contained in:
王鹏
2026-07-07 15:06:33 +08:00
parent 95685efa82
commit edffda2a84
70 changed files with 537 additions and 0 deletions

25
rider-h5/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "linhelp-rider-h5",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5174",
"build": "vue-tsc -b && vite build",
"test": "vitest run",
"lint": "eslint ."
},
"dependencies": {
"axios": "^1.7.2",
"pinia": "^2.1.7",
"vue": "^3.4.31",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^2.0.2",
"vue-tsc": "^2.0.26"
}
}

9
rider-h5/vite.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5174
}
})