generated from trim21/webpack-userscript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "twich-drops-manager",
"description": "Twitch Drops Manager",
"version": "dev",
"author": {
"name": "ComiR",
"email": "twitch-drops-manager@DiComo.de"
},
"scripts": {
"format": "prettier -w ./",
"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/ComiR/twitch-drops-manager"
},
"private": true,
"dependencies": {
"@trim21/gm-fetch": "^0.1.6",
"wait-for-the-element": "^4.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write "
]
},
"devDependencies": {
"@types/node": "22.8.4",
"@types/tampermonkey": "5.0.3",
"browserslist": "4.24.2",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"husky": "9.1.6",
"less": "4.2.0",
"less-loader": "12.2.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"style-loader": "4.0.0",
"ts-loader": "9.5.1",
"typescript": "5.6.3",
"userscript-metadata-webpack-plugin": "0.4.0",
"webpack": "5.95.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-livereload-plugin": "3.0.2",
"webpack-merge": "6.0.1",
"webpack-sources": "3.2.3"
}
}