-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.74 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
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
77
78
79
80
81
82
83
84
85
86
{
"name": "tkdodo-blog",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.32.1",
"scripts": {
"dev": "astro dev",
"build:astro": "astro build",
"build": "pnpm run build:astro",
"preview": "astro preview",
"typecheck": "astro check",
"astro": "astro",
"lint:knip": "knip --treat-config-hints-as-errors",
"lint:knip:fix": "knip --treat-config-hints-as-errors --fix --allow-remove-files",
"lint": "oxlint --deny-warnings .",
"lint:fix": "oxlint --fix --deny-warnings .",
"test": "vitest run",
"format:check": "oxfmt --check . && prettier --check \"src/**/*.astro\"",
"format:write": "oxfmt . && prettier --write \"src/**/*.astro\"",
"ogimages": "tsx ./scripts/og-image.tsx"
},
"dependencies": {
"@atcute/bluesky-richtext-segmenter": "^3.0.0",
"@codesandbox/sandpack-react": "^2.20.0",
"@docsearch/css": "^4.5.4",
"@docsearch/react": "^4.5.4",
"@expressive-code/plugin-collapsible-sections": "^0.41.3",
"@expressive-code/plugin-line-numbers": "^0.41.3",
"@lekoarts/remark-sandpack": "^1.0.0",
"@sentry/astro": "^10.38.0",
"@sentry/profiling-node": "^10.38.0",
"@tailwindcss/vite": "^4.2.2",
"@unpic/astro": "^1.0.2",
"@xt0rted/expressive-code-file-icons": "^1.0.0",
"arkregex": "^0.0.5",
"astro-expressive-code": "^0.41.7",
"dotenv": "^17.3.1",
"expressive-code-twoslash": "^0.5.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-spring-carousel": "^2.0.19",
"satori": "^0.18.4",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.2",
"@astrojs/react": "^5.0.1",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.21",
"@types/mdast": "^4.0.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"astro": "^6.0.6",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"knip": "^6.0.0",
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-to-string": "^4.0.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"remark-directive": "^4.0.0",
"remark-smartypants": "^3.0.2",
"sharp": "^0.34.4",
"shiki": "^3.22.0",
"sirv": "^3.0.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"unist-util-visit": "^5.0.0",
"vitest": "^4.0.18"
},
"pnpm": {
"patchedDependencies": {
"expressive-code-twoslash@0.5.3": "patches/expressive-code-twoslash@0.5.3.patch"
}
}
}