-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 938 Bytes
/
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
{
"name": "yamanoku.github.io",
"author": "yamanoku <[email protected]>",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "pnpm run biome && pnpm run markuplint",
"biome": "biome check --write .",
"biome:ci": "biome ci .",
"markuplint": "markuplint 'dist/**/*.html'",
"yama-normalize": "pnpm -C packages/yama-normalize",
"deploy": "gh-pages -d dist -b main -m 'chore: deploy [skip ci]' -t"
},
"dependencies": {
"@astrojs/tailwind": "5.1.4",
"astro": "5.1.7",
"modern-normalize": "3.0.1",
"tailwindcss": "3.4.17",
"typescript": "^5.7.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"gh-pages": "6.3.0",
"markuplint": "4.11.4"
},
"workspaces": [
"packages/*"
],
"engines": {
"pnpm": "10.0.0",
"npm": "please_use_pnpm_instead"
},
"packageManager": "[email protected]"
}