forked from harborstremio/harbor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "harbor",
"version": "0.9.21",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "tsc -b && vp build",
"check": "vp check",
"test": "node --test tests/*.test.ts",
"typecheck": "tsc -b --pretty false",
"fmt": "vp fmt",
"lint": "vp lint",
"i18n:check": "node scripts/check-i18n.mjs",
"preview": "vp preview",
"tauri": "tauri",
"tauri:build:linux-system": "tauri build --config src-tauri/tauri.linux-system.conf.json",
"setup": "pnpm run setup:binaries && pnpm run setup:libmpv && pnpm run setup:mpv && pnpm run setup:fonts",
"setup:binaries": "node scripts/fetch-binaries.mjs",
"setup:libmpv": "node scripts/fetch-libmpv.mjs",
"setup:mpv": "node scripts/fetch-mpv.mjs",
"setup:ffmpeg": "node scripts/fetch-ffmpeg.mjs",
"setup:fonts": "node scripts/fetch-fonts.mjs",
"prepare": "vp config"
},
"dependencies": {
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-virtual": "^3.14.6",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-deep-link": "^2.4.9",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"gifenc": "^1.0.3",
"hls.js": "^1.6.16",
"lottie-web": "^5.13.0",
"lucide-react": "^1.24.0",
"mpegts.js": "^1.8.0",
"parse-torrent-title": "^3.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.2"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"cheerio": "^1.2.0",
"typescript": "~6.0.3",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"packageManager": "pnpm@11.9.0"
}