Browse Source

update CONFIG

web
NinjaKelly 2 months ago
parent
commit
f75cb64720
4 changed files with 2989 additions and 0 deletions
  1. +2907
    -0
      package-lock.json
  2. +43
    -0
      package.json
  3. +9
    -0
      requirements.txt
  4. +30
    -0
      tsconfig.json

+ 2907
- 0
package-lock.json
File diff suppressed because it is too large
View File


+ 43
- 0
package.json View File

@ -0,0 +1,43 @@
{
"name": "tauri",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"install-reqs": "npm install && pip install -r requirements.txt",
"dev": "vite",
"build:py": "pyinstaller --noconfirm --distpath src-tauri/bin/ main_win.spec",
"build:py-mac": "pyinstaller --noconfirm --distpath src-tauri/bin/ main_mac.spec",
"build:icons": "npx tauri icon public/lazyeat.png",
"build:icons-mac": "npx tauri icon public/lazyeat.png --output src-tauri/icons/mac",
"build": "vite build",
"preview": "vite preview",
"tauri": "npx tauri",
"tauri dev": "npx tauri"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.2",
"@tauri-apps/plugin-opener": "^2.2.6",
"@tauri-apps/plugin-store": "^2.2.0",
"@tauri-apps/plugin-window-state": "^2.2.1",
"element-plus": "^2.9.5",
"pinia": "^3.0.1",
"pinia-shared-state": "^1.0.1",
"vue": "^3.5.13",
"vue-i18n": "^9.14.4",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"naive-ui": "^2.41.0",
"sass-embedded": "^1.85.1",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
}
}

+ 9
- 0
requirements.txt View File

@ -0,0 +1,9 @@
pynput
fastapi
opencv-python
numpy
uvicorn
vosk
pygrabber
pyinstaller
sounddevice

+ 30
- 0
tsconfig.json View File

@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"] // @ src
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}

Loading…
Cancel
Save