-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.98 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.98 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
{
"name": "hardsubx",
"version": "3.4.0",
"description": "SubLens - Video Subtitle Extraction Tool",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"type-check": "vue-tsc --noEmit",
"lint": "eslint src --ext .vue,.ts,.tsx",
"lint:fix": "eslint src --ext .vue,.ts,.tsx --fix",
"test": "vitest run",
"test:watch": "vitest",
"hardsubx-cli": "node cli/dist/extract.js",
"hardsubx:cli:build": "cd cli && npm run build",
"postinstall": "pnpm dedupe"
},
"keywords": [
"video",
"subtitle",
"ocr",
"extraction",
"hardcoded-subtitles",
"srt",
"vtt",
"ass",
"tauri",
"vue",
"tesseract",
"paddleocr",
"easyocr",
"subtitle-extraction",
"video-to-text",
"caption-extraction"
],
"author": "Agions",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Agions/HardSubX"
},
"bugs": {
"url": "https://github.com/Agions/HardSubX/issues"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@vueuse/core": "^10.7.0",
"pinia": "^2.1.0",
"tesseract.js": "^5.0.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/theme": "^2.4.0",
"eslint": "^10.2.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"icns": "^0.1.0",
"icon-gen": "^5.0.0",
"sass": "^1.69.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.58.1",
"unplugin-auto-import": "^0.17.0",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.4.0",
"vitepress": "^1.6.4",
"vitest": "^1.6.1",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.0.0"
}
}