forked from ilyhalight/voice-over-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1018 Bytes
/
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
{
"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": {
"css-loader": "^6.7.3",
"style-loader": "^3.3.2",
"tslib": "^2.5.0",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-userscript": "^3.2.2"
},
"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": "npm run build:default && npm run build:cloudflare",
"dev": "webpack serve --node-env development"
}
}