-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"name": "esi-webpack-plugin",
"version": "9.0.9",
"type": "module",
"description": "A Webpack plugin to resolve ESI includes",
"main": "./dist/commonjs/bundle.js",
"module": "./dist/esm/bundle.js",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"build": "rm -rf dist && npx rollup -c rollup.config.js",
"biome:check": "biome check",
"biome:ci": "biome ci",
"test": "vitest run",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/esm/bundle.js",
"require": "./dist/commonjs/bundle.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jodelamo/esi-webpack-plugin.git"
},
"author": "Joacim de la Motte <[email protected]>",
"license": "MIT",
"files": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/jodelamo/esi-webpack-plugin/issues"
},
"homepage": "https://github.com/jodelamo/esi-webpack-plugin#readme",
"dependencies": {
"html-webpack-plugin": "^5.3.2",
"nodesi": "2.0.1",
"webpack": "5.97.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"semantic-release": "24.2.1",
"vitest": "2.1.8"
},
"peerDependencies": {
"html-webpack-plugin": "^5.3.2"
},
"lint-staged": {
"*.js": [
"npm test",
"biome check --write"
]
}
}