-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 922 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 922 Bytes
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
{
"name": "tech-blog",
"version": "1.0.0",
"description": "**DevSecOps, DevOps, FinOps 전문 기술 블로그**",
"main": "sw.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"vercel-build": "if [ -f _site/index.html ]; then echo 'Build output already exists, skipping duplicate build.'; else ./build.sh; fi",
"index-posts": "node scripts/index_posts.mjs",
"index-posts:dry": "node scripts/index_posts.mjs --dry-run",
"lint": "ruff check scripts/ && mypy scripts/ --ignore-missing-imports",
"lint:fix": "ruff check scripts/ --fix && ruff format scripts/",
"typecheck": "mypy scripts/ --ignore-missing-imports",
"ops:roundtable": "python3 scripts/ops_health_orchestrator.py"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"terser": "^5.46.0"
},
"dependencies": {
"fuse.js": "^7.1.0"
}
}