-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.8 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
{
"name": "ltx-desktop",
"version": "1.0.4",
"description": "LTX-2 Video Generation - Desktop App",
"type": "module",
"main": "dist-electron/main.js",
"author": {
"name": "Lightricks",
"email": "ltx-desktop-dev@lightricks.com"
},
"homepage": "https://github.com/Lightricks/LTX-Desktop",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"setup:dev": "node scripts/run-script.js scripts/setup-dev",
"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",
"openapi:export": "cd backend && uv run python export_openapi_schema.py",
"openapi:types": "openapi-typescript frontend/generated/backend-openapi.json -o frontend/generated/backend-openapi.ts",
"openapi:generate": "pnpm openapi:export && pnpm openapi:types",
"openapi:check": "pnpm openapi:generate && git diff --exit-code -- frontend/generated/backend-openapi.json frontend/generated/backend-openapi.ts",
"backend:test": "cd backend && uv sync --frozen --extra test --extra dev && uv run pytest -v --tb=short",
"build": "node scripts/run-script.js scripts/local-build",
"build:skip-python": "node scripts/run-script.js scripts/local-build --skip-python",
"build:fast": "node scripts/run-script.js scripts/local-build --unpack --skip-python",
"prepare:python": "node scripts/run-script.js scripts/prepare-python",
"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-resizable-panels": "4.7.2",
"tailwind-merge": "^2.3.0",
"zod": "4.3.6",
"zustand": "5.0.12"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"electron": "^41.0.2",
"electron-builder": "^26.8.1",
"openapi-typescript": "^7.10.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.6"
},
"pnpm": {
"overrides": {
"minimatch": "^10.2.3",
"rollup": "^4.59.0",
"tar": "^7.5.11"
}
}
}