-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.81 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
87
88
89
90
91
92
93
94
95
96
{
"name": "blog.lacolaco.net",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:lacolaco/blog.lacolaco.net.git",
"author": "Suguru Inatomi <suguru.inatomi@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:force": "astro build --force",
"preview": "astro preview",
"format": "prettier --cache --write 'src' 'tools'",
"format:check": "prettier --cache --check 'src' 'tools'",
"astro": "astro",
"auto-translate": "tsx --env-file .env tools/auto-translate/main.ts",
"test:tools": "tsx --test --test-reporter spec tools/**/*.spec.ts",
"test:remark-embed": "tsx --test --test-reporter spec tools/remark-embed/**/*.spec.ts",
"test:libs": "vitest run",
"test": "pnpm test:tools && pnpm test:libs",
"lint": "eslint .",
"prepare": "husky",
"postinstall": "astro sync"
},
"packageManager": "pnpm@10.34.5",
"dependencies": {
"@astrojs/node": "^10.0.4",
"@astrojs/prism": "4.0.2",
"@astrojs/react": "5.0.7",
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"@date-fns/tz": "^1.2.0",
"@fontsource/source-code-pro": "5.2.7",
"@fontsource/zen-kaku-gothic-new": "5.2.7",
"@resvg/resvg-js": "2.6.2",
"astro": "6.4.8",
"budoux": "0.8.4",
"cheerio": "1.2.0",
"date-fns": "4.4.0",
"escape-html": "^1.0.3",
"hast-util-from-html": "^2.0.3",
"katex": "0.17.0",
"mermaid": "11.16.0",
"p-retry": "^8.0.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"satori": "^0.26.0",
"unist-util-visit": "^5.0.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@google/genai": "^2.0.0",
"@iconify/json": "^2.2.161",
"@iconify/tailwind": "^1.0.0",
"@tailwindcss/vite": "^4.1.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/dom-chromium-ai": "^0.0.17",
"@types/escape-html": "^1.0.4",
"@types/gtag.js": "^0.0.20",
"@types/katex": "0.16.8",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"image-size": "^2.0.2",
"jsdom": "^29.0.2",
"prettier": "3.8.5",
"rehype-github-alert": "^1.0.0",
"rehype-github-emoji": "^1.0.0",
"rehype-katex": "^7.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sass": "1.101.0",
"tailwindcss": "4.3.2",
"tsx": "4.23.1",
"typescript-eslint": "^8.33.1",
"vitest": "4.1.10",
"zod": "^3.22.4"
},
"pnpm": {
"overrides": {
"uuid": ">=10"
}
}
}