-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 762 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 762 Bytes
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
{
"name": "patchnet",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"tauri:dev": "VITE_PLATFORM=native tauri dev",
"tauri:build": "VITE_PLATFORM=native tauri build"
},
"devDependencies": {
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"knip": "^6.4.1",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vitest": "^4.1.5",
"ws": "^8.20.0"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"qrcode": "^1.5.4"
}
}