forked 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
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "webpack-userscript-template",
"description": "Build your UserScript with webpack",
"version": "1.0.0",
"author": {
"name": "maanimis",
"email": "maanimis.dev@gmail.com"
},
"scripts": {
"check": "biome check --write",
"lint": "biome lint --write",
"format": "biome format --write",
"test": "jest",
"clear": "rimraf dist",
"compile": "npm run clear && tsc",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/maanimis/webpack-userscript-template"
},
"private": true,
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@biomejs/biome": "2.3.1",
"@types/debug": "4.1.12",
"@types/jest": "30.0.0",
"@types/jquery": "3.5.33",
"@types/node": "24.9.2",
"@violentmonkey/types": "0.3.1",
"babel-jest": "30.2.0",
"browserslist": "4.27.0",
"cross-env": "10.1.0",
"css-loader": "7.1.2",
"husky": "9.1.7",
"jest": "30.2.0",
"less": "4.4.2",
"less-loader": "12.3.0",
"lint-staged": "16.2.6",
"rimraf": "6.0.1",
"style-loader": "4.0.0",
"ts-loader": "9.5.4",
"tsx": "4.20.6",
"typescript": "5.9.3",
"userscript-metadata-webpack-plugin": "0.4.2",
"webpack": "5.102.1",
"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.3.3",
"yocto-queue": "1.2.2"
},
"dependencies": {
"debug": "4.4.3",
"jquery": "3.7.1"
}
}