-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "slock-desktop",
"private": true,
"version": "0.2.11",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:debug:app": "tauri build --debug --bundles app --config src-tauri/tauri.debug.conf.json",
"tauri:debug:open": "pnpm tauri:debug:app && open -n \"src-tauri/target/debug/bundle/macos/Slock Desktop.app\"",
"tauri:build": "tauri build",
"test": "pnpm lint && pnpm build && cargo check --manifest-path src-tauri/Cargo.toml"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}