-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "html-rspack-plugin",
"version": "6.0.2",
"license": "MIT",
"description": "Simplifies creation of HTML files to serve your Rspack bundles",
"author": "Jan Nicklas <[email protected]> (https://github.com/jantimon)",
"main": "lib/index.js",
"types": "typings.d.ts",
"files": [
"lib/",
"typings.d.ts"
],
"scripts": {
"posttest": "tsc",
"commit": "git-cz",
"build-examples": "node examples/build-examples.js",
"test": "jest --runInBand --verbose --coverage",
"test-watch": "jest --runInBand --watch",
"puml": "npx puml generate flow.puml -o flow.png",
"release": "standard-version"
},
"packageManager": "[email protected]",
"dependencies": {
"@rspack/lite-tapable": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20.17.5",
"css-loader": "5.2.7",
"dir-compare": "^3.3.0",
"html-loader": "2.1.2",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"pug": "3.0.3",
"pug-loader": "2.4.0",
"raw-loader": "4.0.2",
"rimraf": "^4.4.1",
"standard-version": "^9.3.0",
"style-loader": "2.0.0",
"typescript": "4.9.5",
"webpack": "^5.96.1",
"webpack-cli": "4.10.0",
"webpack-recompilation-simulator": "3.2.0"
},
"peerDependencies": {
"@rspack/core": "0.x || 1.x"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"keywords": [
"rspack",
"plugin",
"html",
"html-rspack-plugin"
],
"bugs": "https://github.com/rspack-contrib/html-rspack-plugin/issues",
"homepage": "https://github.com/rspack-contrib/html-rspack-plugin",
"repository": "https://github.com/rspack-contrib/html-rspack-plugin.git",
"engines": {
"node": ">=16.0.0"
},
"jest": {
"watchPathIgnorePatterns": [
"<rootDir>/dist"
],
"testEnvironment": "node"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/html-webpack-plugin"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}