-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.54 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
{
"name": "ltx-desktop",
"version": "1.0.1",
"description": "LTX-2 Video Generation - Desktop App",
"type": "module",
"main": "dist-electron/main.js",
"author": "Lightricks",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"setup:dev:mac": "bash scripts/setup-dev.sh",
"setup:dev:win": "powershell -ExecutionPolicy Bypass -File scripts/setup-dev.ps1",
"dev": "vite",
"dev:debug": "cross-env BACKEND_DEBUG=1 ELECTRON_DEBUG=1 vite",
"typecheck": "concurrently \"pnpm run typecheck:ts\" \"pnpm run typecheck:py\"",
"typecheck:ts": "tsc --noEmit",
"typecheck:py": "cd backend && uv run pyright",
"backend:test": "cd backend && uv sync --frozen --extra test --extra dev && uv run pytest -v --tb=short",
"build:mac": "bash scripts/local-build.sh --platform mac",
"build:win": "powershell -ExecutionPolicy Bypass -File scripts/local-build.ps1",
"build:mac:skip-python": "bash scripts/local-build.sh --platform mac --skip-python",
"build:win:skip-python": "powershell -ExecutionPolicy Bypass -File scripts/local-build.ps1 -SkipPython",
"build:fast:mac": "bash scripts/local-build.sh --platform mac --unpack --skip-python",
"build:fast:win": "powershell -ExecutionPolicy Bypass -File scripts/local-build.ps1 -Unpack -SkipPython",
"prepare:python:mac": "bash scripts/prepare-python.sh",
"prepare:python:win": "powershell -ExecutionPolicy Bypass -File scripts/prepare-python.ps1",
"build:frontend": "vite build",
"start:unpacked:mac": "open release/mac-arm64/LTX\\ Desktop.app",
"start:unpacked:win": "powershell -Command \"& '.\\release\\win-unpacked\\LTX Desktop.exe'\""
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"electron-updater": "^6.8.3",
"js-yaml": "^4.1.1",
"lucide-react": "^0.400.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"electron": "^31.0.0",
"electron-builder": "^26.8.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5",
"wait-on": "^7.2.0"
}
}