forked from sodapng/voice-over-translation
-
Notifications
You must be signed in to change notification settings - Fork 233
/
package.json
63 lines (63 loc) · 1.88 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
{
"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": {
"@types/bun": "^1.1.13",
"browser-id3-writer": "^6.1.0",
"browserslist": "^4.24.2",
"enquirer": "^2.4.1",
"eslint": "^9.14.0",
"eslint-plugin-oxlint": "^0.11.0",
"eslint-webpack-plugin": "^4.2.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lightningcss": "^1.28.1",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"oxlint": "^0.11.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"sass": "^1.80.6",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-monkey": "^0.2.1"
},
"scripts": {
"test:ui": "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",
"chaimu": "^1.0.2",
"lit": "^3.2.1",
"requestidlecallback-polyfill": "^1.0.2",
"vot.js": "^1.3.10"
}
}