generated from trim21/webpack-userscript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 KB
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
{
"name": "metatranslator",
"description": "Show translated tooltip on text selection",
"version": "1.0",
"author": {
"name": "maanimis",
"email": "maanimis.dev@gmail.com"
},
"scripts": {
"format": "prettier --ignore-path .prettierignore --write .",
"analize": "cross-env npm_config_report=true npm run build",
"build": "webpack --config config/webpack.config.prod.cjs",
"dev": "webpack --config config/webpack.config.dev.cjs",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/maanimis/MetaTranslator"
},
"private": true,
"dependencies": {
"debug": "^4.4.0",
"jquery": "^3.7.1",
"jszip": "^3.10.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-path .prettierignore --write"
]
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jquery": "^3.5.32",
"@types/node": "^22.13.7",
"@violentmonkey/types": "^0.2.0",
"browserslist": "^4.24.4",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"userscript-metadata-webpack-plugin": "^0.4.0",
"webpack": "^5.98.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.2.3"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}