forked from gnehs/subtitle-translator-electron
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.25 KB
/
package.json
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
{
"name": "subtitle-translator-electron",
"version": "0.6.1",
"main": "dist-electron/main/index.js",
"description": "Translate subtitle using ChatGPT",
"author": "gnehs",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.31.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/tiny-async-pool": "^2.0.0",
"@vitejs/plugin-react": "^3.1.0",
"electron": "^24.0.0-beta.1",
"electron-builder": "^23.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"typescript": "^5.0.3",
"vite": "^4.1.4",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.13.14"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"dependencies": {
"ass-parser": "^0.2.0",
"ass-stringify": "^0.1.3",
"normalize.css": "^8.0.1",
"openai": "^3.2.1",
"subtitle": "^4.2.1",
"tiny-async-pool": "^2.1.0"
}
}