-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.14 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
{
"name": "@lilsnake/subtitle-editor",
"version": "1.0.5",
"description": "A powerful React subtitle editor component with multi-language support, waveform visualization, and real-time editing",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"dev:demo": "npm run build && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"subtitle",
"editor",
"video",
"subtitles",
"waveform",
"srt",
"vtt",
"ass",
"translation",
"multi-language"
],
"author": "SnakeLil",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SnakeLil/subtitle-editor.git"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"tailwindcss": "^4.0.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@forlagshuset/simple-fs": "^0.5.2",
"@lilsnake/subtitle-editor": "^1.0.3",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"duration-time-conversion": "^1.0.6",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"react-textarea-autosize": "^8.5.9",
"react-virtualized": "^9.22.6",
"wfplayer": "^2.2.7"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-textarea-autosize": "^4.3.6",
"@vitejs/plugin-react": "^5.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"vite": "^7.2.2",
"vite-plugin-dts": "^4.5.0"
}
}