-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.08 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
{
"name": "comine",
"version": "1.1.0-16",
"description": "A cross-platform media downloader",
"author": "nichind",
"homepage": "https://comine.app",
"repository": {
"type": "git",
"url": "https://github.com/nichind/comine"
},
"keywords": [
"downloader",
"yt-dlp",
"tauri",
"svelte",
"media"
],
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "pnpm check && vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"format": "prettier --write \"src/**/*.{ts,js,svelte,json}\"",
"format:rust": "cd src-tauri && cargo fmt",
"format:all": "pnpm format && pnpm format:rust",
"generate:i18n-keys": "node scripts/generate-i18n-keys.js",
"generate:bindings": "node scripts/generate-bindings.js",
"version:set": "node scripts/bump-version.js",
"preflight": "pnpm format:all && pnpm generate:i18n-keys && pnpm generate:bindings && pnpm check"
},
"license": "GPL-3.0-only",
"dependencies": {
"@floating-ui/dom": "^1.7.5",
"@tanstack/svelte-virtual": "^3.13.18",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.6",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.9.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tauri-apps/cli": "^2.9.6",
"@types/node": "^22.19.7",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.48.0",
"svelte-check": "^4.3.5",
"typescript": "~5.6.3",
"vite": "^6.4.1",
"vitest": "^2.1.9"
}
}