-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "honai.me",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/honai/honai.me.git",
"author": "Honai Ueoka",
"private": true,
"type": "module",
"engines": {
"node": ">=22 <23",
"pnpm": ">=9 <10"
},
"scripts": {
"build": "tsx build.ts",
"tscheck": "tsc --noEmit",
"clean": "rimraf public",
"start": "serve public"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.1",
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@stitches/core": "^1.2.8",
"cloudinary": "^1.41.3",
"esbuild": "^0.19.12",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"highlight.js": "^11.10.0",
"js-yaml": "^4.1.0",
"lit-html": "^3.2.1",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^3.0.3",
"markdown-it-link-attributes": "^4.0.1",
"preact": "^10.25.1",
"preact-render-to-string": "^6.5.11",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^13.0.9",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/node": "^20.17.9",
"rimraf": "^5.0.10",
"serve": "^14.2.4",
"typescript": "^5.7.2"
}
}