-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.7 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.7 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
{
"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",
"notion-sync": "tsx --env-file .env tools/notion-sync/main.ts",
"r2-sync": "tsx --env-file .env tools/r2-sync/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 ."
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@astrojs/node": "^10.0.4",
"@astrojs/prism": "4.0.1",
"@astrojs/react": "5.0.2",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"@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.1.1",
"cheerio": "1.2.0",
"date-fns": "4.1.0",
"escape-html": "^1.0.3",
"katex": "0.16.44",
"mermaid": "11.13.0",
"p-retry": "^8.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"satori": "^0.26.0",
"unist-util-visit": "^5.0.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.967.0",
"@eslint/js": "^10.0.1",
"@iconify/json": "^2.2.161",
"@iconify/tailwind": "^1.0.0",
"@lacolaco/notion-sync": "^6.0.0",
"@notionhq/client": "5.15.0",
"@tailwindcss/vite": "^4.1.4",
"@types/dom-chromium-ai": "^0.0.16",
"@types/escape-html": "^1.0.4",
"@types/gtag.js": "^0.0.20",
"@types/katex": "0.16.8",
"@types/mime-types": "^3.0.1",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "^10.0.0",
"mime-types": "^3.0.2",
"prettier": "3.8.1",
"rehype": "^13.0.2",
"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.98.0",
"tailwindcss": "4.2.2",
"tsx": "4.21.0",
"typescript-eslint": "^8.33.1",
"vitest": "4.1.2",
"zod": "^3.22.4"
}
}