generated from marc2332/tauri-deno-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bluetooth-battery-monitor",
"description": "A simple app to monitor the battery of your bluetooth devices",
"version": "0.4.0",
"license": "MIT",
"homepage": "https://github.com/SARDONYX-sard/bluetooth-battery-monitor",
"private": true,
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:front": "next ./gui/frontend",
"build": "rimraf ./gui/frontend/out && tauri build --no-bundle",
"build:front": "next build ./gui/frontend",
"build:icons": "cargo tauri icon ./gui/backend/icons/icon.png",
"test": "vitest run",
"test:back": " cargo test --workspace",
"test:all": "npm test && npm run test:back",
"fmt": "biome format --write ./ && prettier --cache --write \"**/*.+(yml|yaml)\" --ignore-path ./.gitignore && cargo fmt --all",
"lint": "next lint ./gui/frontend && biome lint ./ && cargo clippy --workspace",
"lint:fix": "npm run fmt && next lint ./gui/frontend --fix && biome check --apply ./ && cargo clippy --workspace --fix --allow-staged --allow-dirty",
"tauri": "tauri"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "6.4.0",
"@mui/lab": "6.0.0-beta.23",
"@mui/material": "6.4.0",
"@tauri-apps/api": "2.2.0",
"@tauri-apps/plugin-autostart": "2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "2.2.0",
"@tauri-apps/plugin-notification": "2.2.1",
"@tauri-apps/plugin-shell": "^2.2.0",
"babel-plugin-react-compiler": "^19.0.0-beta-b2e8e9c-20241220",
"i18next": "24.2.1",
"next": "15.1.4",
"notistack": "^3.0.1",
"react": "18.3.1",
"react-use": "^17.6.0",
"react-dom": "18.3.1",
"react-i18next": "15.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@tauri-apps/cli": "2.2.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "22.10.6",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.4",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "2.1.8"
},
"overrides": {
"monaco-editor": "^0.49.0"
},
"packageManager": "[email protected]"
}