-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 641 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "moony01-blog-tools",
"version": "1.0.0",
"description": "Blog automation tools for moony01.github.io",
"type": "module",
"scripts": {
"optimize-images": "node scripts/optimize-images.js",
"convert-to-picture": "node scripts/convert-to-picture.js",
"create-post": "node scripts/create-post.js",
"migrate-images": "node scripts/migrate-images.js",
"prebuild": "npm run optimize-images -- --all && npm run convert-to-picture"
},
"devDependencies": {
"sharp": "^0.33.0",
"gray-matter": "^4.0.3",
"glob": "^10.3.0",
"slugify": "^1.6.6"
},
"engines": {
"node": ">=18.0.0"
}
}