-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.06 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.06 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
78
79
80
81
82
83
84
85
86
87
{
"name": "opensub",
"version": "0.3.1",
"description": "Descript-style subtitle editor with AI transcription",
"type": "module",
"main": "out/main/index.js",
"author": "OpenSub",
"license": "MIT",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"build:mac": "npm run build && electron-builder --mac",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:visual": "npm run build && playwright test tests/ui-verification.spec.ts",
"test:visual:update": "npm run build && playwright test tests/ui-verification.spec.ts --update-snapshots",
"postinstall": "npx @electron/rebuild -f -w better-sqlite3",
"setup:python": "bash scripts/download-python.sh && bash scripts/setup-python-env.sh",
"dist": "npm run setup:python && npm run build && electron-builder --mac",
"dist:unsigned": "npm run build && electron-builder --mac",
"dist:signed": "npm run dist"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"better-sqlite3": "^12.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"electron-store": "^11.0.2",
"fluent-ffmpeg": "^2.1.3",
"i18next": "^25.7.4",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.562.0",
"react-aria-components": "^1.14.0",
"react-i18next": "^16.5.3",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"wavesurfer.js": "^7.8.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron/notarize": "^3.1.1",
"@electron/rebuild": "^4.0.2",
"@playwright/test": "^1.57.0",
"@types/better-sqlite3": "^7.6.13",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"electron-playwright-helpers": "^2.1.0",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"playwright": "^1.57.0",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}