-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "xtream",
"type": "module",
"version": "1.8.0",
"license": "GPL-3.0-or-later",
"packageManager": "pnpm@10.31.0",
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"tauri": "tauri",
"tauri:android": "tauri android",
"tauri:android:build": "tauri android build",
"test": "vitest run",
"test:watch": "vitest",
"test:visual": "playwright test --project=desktop --project=phone",
"test:e2e": "playwright test --project=e2e",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"screenshots": "node ./src/scripts/capture-screenshots.mjs",
"msix": "node ./buildfiles/make-msix-template.mjs",
"msix:ci": "node ./buildfiles/make-msix-ci.mjs",
"sync-version": "node ./buildfiles/sync-version.mjs",
"fetch-ffmpeg": "node ./src/scripts/ensure-ffmpeg-sidecar.mjs"
},
"dependencies": {
"@astrojs/svelte": "^9.0.1",
"@fontsource-variable/geist": "5.3.0",
"@fontsource/instrument-serif": "5.3.0",
"@tabler/icons-svelte": "^3.46.0",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-log": "^2.9.0",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.4",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tauri-apps/plugin-window-state": "~2.4.1",
"artplayer": "^5.4.0",
"astro": "^7.2.3",
"dompurify": "^3.4.13",
"hls.js": "^1.7.0",
"marked": "^18.0.10",
"mp4box": "^2.4.1",
"mpegts.js": "1.8.0",
"shaka-player": "^5.2.6",
"svelte": "^5.56.9",
"tailwindcss": "^4.3.3",
"tauri-plugin-android-fs-api": "28.1.0",
"typescript": "^6.0.3",
"video.js": "^8.24.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tauri-apps/cli": "^2.11.4",
"@vitest/expect": "^4.1.11",
"eslint": "^10.8.1",
"eslint-plugin-astro": "^3.1.0",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"magic-string": "^1.2.0",
"playwright": "^1.62.1",
"svelte-eslint-parser": "^1.8.1",
"tiny-glob": "^0.2.9",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.11"
}
}