forked from ilyhalight/voice-over-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "voice-over-translation",
"version": "1.0.0",
"source": "src/index.js",
"author": "Toil",
"license": "MIT",
"description": "A small extension that adds a Yandex Browser video translation to other browsers",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyhalight/voice-over-translation.git"
},
"keywords": [
"cli",
"vot",
"voice-over-translation"
],
"devDependencies": {
"browser-id3-writer": "^6.1.0",
"browserslist": "^4.24.0",
"bun-types": "^1.1.29",
"enquirer": "^2.4.1",
"eslint": "^9.11.1",
"eslint-plugin-oxlint": "^0.9.8",
"eslint-plugin-sonarjs": "^2.0.2",
"eslint-webpack-plugin": "^4.2.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lightningcss": "^1.27.0",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.3",
"oxlint": "^0.9.8",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"sass": "^1.79.3",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-monkey": "^0.2.1"
},
"scripts": {
"test": "webpack build -c .webpack/config.ui-test.js",
"build": "webpack build -c .webpack/webpack.config.js",
"build:min": "webpack build -c .webpack/webpack.config.js --env build_type=minify",
"build:all": "run-p build build:min",
"build:bun": "bun run build:all",
"dev": "webpack serve --node-env development",
"lint": "npx oxlint --ignore-path=.oxlintignore && npx eslint",
"prepare": "husky",
"gen:wiki": "bun run ./scripts/wiki-gen/index.js",
"l10n": "bun run ./scripts/l10n-tui/index.ts",
"localize": "bun run l10n",
"postinstall": "patch-package"
},
"dependencies": {
"bowser": "^2.11.0",
"lit": "^3.2.0",
"requestidlecallback-polyfill": "^1.0.2",
"vot.js": "^1.3.1"
}
}