forked from Nitrino/easysubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "easysubs",
"version": "3.0.2",
"description": "Browser extension for learning languages with watching movies and TV shows",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Nitrino/easysubs.git"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.mjs",
"wss": "node utils/reload/initReloadServer.js",
"dev": "pnpm build:hmr && (run-p wss build:watch)",
"dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)",
"test": "vitest",
"commitlint": "commitlint --edit",
"lint": "eslint src --ext .ts,.js,.tsx,.jsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write"
},
"type": "module",
"dependencies": {
"classnames": "^2.5.1",
"effector": "^23.2.2",
"effector-react": "^23.2.1",
"m3u8-parser": "^7.1.0",
"patronum": "^2.2.0",
"qs": "^6.12.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-hot-toast": "^2.4.1",
"react-select": "^5.8.0",
"stream-browserify": "^3.0.0",
"subtitle": "^2.0.5",
"webext-dynamic-content-scripts": "^10.0.4"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/chrome": "^0.0.259",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/subtitle": "^2.0.6",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"rollup": "^4.19.0",
"sass": "^1.77.8",
"tailwindcss": "^3.4.7",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"ws": "^8.18.0"
}
}