-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "dub-rip",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "bun scripts/fetch-yt-dlp.mjs && vite build",
"preview": "vite preview",
"start": "node build/index.js",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "biome check .",
"format": "biome format .",
"format:write": "biome format --write .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@internationalized/date": "^3.10.0",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-node": "^5.5.1",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "^10.4.23",
"bits-ui": "^2.14.4",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"svelte": "^5.45.6",
"svelte-check": "^4.3.4",
"tailwindcss": "^3",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.16"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@sentry/sveltekit": "^10",
"clsx": "^2.1.1",
"lucide-svelte": "^0.562.0",
"node-id3": "^0.2.9",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"yt-dlp-wrap": "^2.3.12"
}
}