-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
{
"name": "viva-chrome-extension",
"version": "2.0.0",
"description": "Viva Translate Chrome Extension",
"private": "true",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --watch --config ./webpack.config.js",
"build": "pnpm run lint && cross-env NODE_ENV=production webpack --config ./webpack.config.js && pnpm run zip",
"lint": "tsc --noEmit && eslint \"*/**/*.ts\"",
"lint:fix": "pnpm run lint -- --fix",
"zip": "cd dist/ && bestzip ../viva-$npm_package_version-\"$(date +\"%m-%d-%y\")\".zip *"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Viva-Translate/viva-chrome-extension.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Viva-Translate/viva-chrome-extension/issues"
},
"homepage": "https://github.com/Viva-Translate/viva-chrome-extension#readme",
"dependencies": {
"@types/chrome": "^0.0.270",
"esm": "^3.2.25",
"i18next": "^23.14.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-typescript": "^7.24.7",
"@types/audioworklet": "^0.0.60",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.3",
"bestzip": "^2.2.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}