-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "hexo-lightning-minify",
"version": "0.1.5",
"description": "A Hexo plugin that can automatically minify JS, CSS, and HTML files at lightning speed.",
"main": "index.js",
"scripts": {
"build": "tsc --build --verbose",
"test": "tsc"
},
"author": "zkz098",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@minify-html/node": "^0.15.0",
"browserslist": "^4.23.0",
"cheerio": "1.0.0-rc.12",
"esbuild": "^0.20.1",
"hexo": "^7.1.1",
"html-minifier": "^4.0.0",
"lightningcss": "^1.23.0",
"micromatch": "^4.0.5",
"sharp": "^0.33.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/html-minifier": "^4.0.5",
"@types/node": "^20.11.19",
"@types/micromatch": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-standard": "~17",
"eslint-plugin-n": "^16.6.2"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.values": "npm:@nolyfill/object.values@latest"
}
}
}