Files
meijiaka-zy/tauri-app/package.json
T
2026-06-01 16:59:06 +08:00

67 lines
1.9 KiB
JSON

{
"name": "tauri-app",
"private": true,
"version": "1.7.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"date-fns": "^4.1.0",
"fabric": "^7.3.1",
"immer": "^11.1.4",
"qrcode": "^1.5.4",
"react": "^19.1.0",
"react-day-picker": "^10.0.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.13.1",
"swr": "^2.4.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^29.0.1",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.3.2",
"vitest": "^4.1.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}