| { |
| "name": "ai-workplace-desktop", |
| "version": "1.0.0", |
| "description": "AI Workplace Desktop Application - Cross-platform desktop app for AI Workplace", |
| "author": "AI Workplace Team", |
| "license": "MIT", |
| "type": "module", |
| "scripts": { |
| "dev": "vite", |
| "build": "tsc && vite build", |
| "preview": "vite preview", |
| "tauri": "tauri", |
| "tauri:dev": "tauri dev", |
| "tauri:build": "tauri build", |
| "tauri:build:debug": "tauri build --debug", |
| "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", |
| "lint:fix": "eslint src --ext ts,tsx --fix", |
| "format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"", |
| "typecheck": "tsc --noEmit", |
| "test": "vitest", |
| "test:ui": "vitest --ui", |
| "test:coverage": "vitest --coverage" |
| }, |
| "dependencies": { |
| "@tauri-apps/api": "^2.0.0", |
| "@tauri-apps/plugin-shell": "^2.0.0", |
| "@tauri-apps/plugin-fs": "^2.0.0", |
| "@tauri-apps/plugin-dialog": "^2.0.0", |
| "@tauri-apps/plugin-opener": "^2.0.0", |
| "@tauri-apps/plugin-os": "^2.0.0", |
| "@tauri-apps/plugin-process": "^2.0.0", |
| "@tauri-apps/plugin-clipboard-manager": "^2.0.0", |
| "@tauri-apps/plugin-global-shortcut": "^2.0.0", |
| "@tauri-apps/plugin-notification": "^2.0.0", |
| "@tauri-apps/plugin-updater": "^2.0.0", |
| "react": "^18.2.0", |
| "react-dom": "^18.2.0", |
| "react-router-dom": "^6.22.0", |
| "zustand": "^4.5.0", |
| "axios": "^1.6.0", |
| "date-fns": "^3.3.0", |
| "lucide-react": "^0.330.0" |
| }, |
| "devDependencies": { |
| "@tauri-apps/cli": "^2.0.0", |
| "@types/react": "^18.2.0", |
| "@types/react-dom": "^18.2.0", |
| "@vitejs/plugin-react": "^4.2.0", |
| "typescript": "^5.3.0", |
| "vite": "^5.0.0", |
| "eslint": "^8.56.0", |
| "eslint-plugin-react-hooks": "^4.6.0", |
| "eslint-plugin-react-refresh": "^0.4.0", |
| "@typescript-eslint/eslint-plugin": "^7.0.0", |
| "@typescript-eslint/parser": "^7.0.0", |
| "prettier": "^3.2.0", |
| "prettier-plugin-organize-imports": "^3.2.0", |
| "vitest": "^1.2.0", |
| "@vitest/ui": "^1.2.0", |
| "@vitest/coverage-v8": "^1.2.0", |
| "tailwindcss": "^3.4.0", |
| "postcss": "^8.4.0", |
| "autoprefixer": "^10.4.0" |
| }, |
| "engines": { |
| "node": ">=18.0.0" |
| }, |
| "packageManager": "npm@10.2.0" |
| } |