forked from ilyhalight/voice-over-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.04 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
{
"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": {
"ajv": "^8.16.0",
"bun-types": "^1.1.13",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"tslib": "^2.6.3",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-monkey": "^0.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cloudflare": "webpack build -c webpack.config.js --env build_mode=cloudflare",
"build:default": "webpack build -c webpack.config.js",
"build:cloudflare-min": "webpack build -c webpack.config.js --env build_mode=cloudflare --env build_type=minify",
"build:default-min": "webpack build -c webpack.config.js --env build_type=minify",
"build": "run-p build:default build:cloudflare",
"build:min": "run-p build:default-min build:cloudflare-min",
"build:all": "run-p build build:min",
"dev": "webpack serve --node-env development",
"dev:cloudflare": "webpack serve --node-env development --env build_mode=cloudflare",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"format": "prettier --write --ignore-unknown \"src/**/*.{html,css,scss,cjs,js,ts,json}\"",
"prepare": "husky",
"gen:wiki": "bun run ./wiki/gen-sites.js"
},
"dependencies": {
"bowser": "^2.11.0",
"requestidlecallback-polyfill": "^1.0.2"
}
}