-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://json.schemastore.org/package.json",
"name": "blog",
"type": "module",
"version": "0.1.0",
"private": true,
"browserslist": ["defaults"],
"scripts": {
"prepare": "husky",
"new": "scaffdog generate post",
"dev": "astro dev",
"build": "astro build",
"build:clean": "rm -rf ./dist",
"preview": "astro preview",
"check": "astro check",
"biome:write": "biome check --write .",
"biome:unsafe": "biome check --write --unsafe .",
"biome:ci": "biome ci .",
"lint:text": "textlint ./src/content/posts/**/*.md",
"lint:ls": "ls-lint",
"lint:knip": "knip",
"test": "vitest",
"test:unit": "vitest run",
"test:type": "tsc -noEmit",
"coverage": "vitest run --coverage",
"coverage:clean": "rm -rf ./coverage",
"clean": "rm -rf ./node_modules",
"clean:astro": "rm -rf ./.astro"
},
"dependencies": {
"@astrojs/partytown": "2.1.3",
"@astrojs/rss": "4.0.11",
"@astrojs/solid-js": "5.0.1",
"@astrojs/tailwind": "5.1.4",
"@fontsource/jetbrains-mono": "5.1.2",
"@fontsource/zen-kaku-gothic-new": "5.1.1",
"@kobalte/core": "0.13.7",
"astro": "5.1.2",
"astro-expressive-code": "0.38.3",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"markdown-it": "14.1.0",
"postcss-load-config": "6.0.1",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"sanitize-html": "2.14.0",
"satori": "0.12.0",
"satori-html": "0.3.2",
"sharp": "0.33.5",
"solid-js": "1.9.3",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@biomejs/biome": "1.9.4",
"@ls-lint/ls-lint": "2.2.3",
"@playwright/test": "1.49.1",
"@types/markdown-it": "14.1.2",
"@types/node": "20.17.10",
"@types/sanitize-html": "2.13.0",
"@types/unist": "3.0.3",
"@vitest/coverage-v8": "2.1.8",
"husky": "9.1.7",
"knip": "5.41.1",
"lost-pixel": "3.22.0",
"scaffdog": "4.1.0",
"textlint": "14.4.2",
"textlint-filter-rule-allowlist": "4.0.0",
"textlint-filter-rule-comments": "1.2.2",
"textlint-rule-preset-ja-technical-writing": "12.0.2",
"vitest": "3.0.0-beta.3"
},
"trustedDependencies": ["@biomejs/biome", "esbuild", "odiff-bin", "sharp"]
}