-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "hexo-optimize",
"version": "3.3.0",
"description": "A hexo plugin that optimize the pages loading speed.",
"main": "index.js",
"files": [
"src/**",
"Cargo.toml",
"lib",
"index.js",
"postinstall.js"
],
"scripts": {
"build": "cargo-cp-artifact --artifact cdylib html-minify index.node -- cargo build --message-format=json-render-diagnostics",
"build-release": "npm run build -- --release",
"lint": "eslint index.js lib",
"postinstall": "node postinstall.js"
},
"repository": "next-theme/hexo-optimize",
"keywords": [
"hexo",
"NexT",
"plugins",
"optimization"
],
"author": "Tsanie Lily",
"license": "MIT",
"bugs": {
"url": "https://github.com/next-theme/hexo-optimize/issues"
},
"homepage": "https://github.com/next-theme/hexo-optimize#readme",
"dependencies": {
"bluebird": "^3.7.2",
"cargo-cp-artifact": "^0.1",
"lightningcss": "^1.24.1",
"micromatch": "^4.0.5",
"terser": "^5.30.3"
},
"devDependencies": {
"@next-theme/eslint-config": "0.0.3",
"aws-sdk": "^2.1599.0",
"eslint": "8.57.0",
"lighthouse": "^9.6.7"
}
}