-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.08 KB
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
{
"name": "perust.github.io",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Astro 기반 개인 홈페이지, 포트폴리오, 블로그.",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro build",
"check:seo": "node scripts/check-seo.mjs",
"verify:seo": "npm run build && npm run check:seo",
"check:adsense": "node scripts/check-adsense.mjs",
"verify:adsense": "npm run build && npm run check:adsense",
"check:content-quality": "node scripts/check-content-quality.mjs",
"check:taxonomy": "node scripts/check-taxonomy.mjs",
"check:publish-policy": "node scripts/check-publish-policy.mjs",
"test:publish-policy": "node --test scripts/tests/*.test.mjs",
"verify:site": "npm run build && npm run check:seo && npm run check:adsense && npm run check:content-quality && npm run check:taxonomy && npm run check:publish-policy"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
"astro": "^7.0.3"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}