-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "nahcnuj.github.io",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:expose": "vite --host",
"build": "vite build --mode client && vite build",
"format": "biome format --write .",
"lint": "npm run lint:biome",
"lint:fix": "npm run lint:biome:fix && npm run lint:text:fix",
"lint:biome": "biome lint .",
"lint:biome:fix": "npm run lint:biome -- --write",
"lint:text": "textlint -f pretty-error ./app/routes/**/*.mdx",
"lint:text:fix": "textlint --fix ./app/routes/**/*.mdx",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.ts"
},
"dependencies": {
"@hono/vite-ssg": "^0.3.3",
"@mdx-js/rollup": "^3.1.1",
"@resvg/resvg-js": "^2.6.2",
"hono": "^4.12.14",
"honox": "^0.1.55",
"katex": "^0.16.45",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"temporal-polyfill": "^0.3.2",
"vite": "^8.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/katex": "^0.16.8",
"@types/node": "^24.12.2",
"playwright": "^1.59.1",
"textlint": "^15.5.4",
"textlint-filter-rule-comments": "^1.3.0",
"textlint-filter-rule-node-types": "^1.1.0",
"textlint-plugin-mdx": "^1.1.0",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-preset-japanese": "^10.0.4",
"vitest": "^4.1.4"
},
"engines": {
"node": "24.x"
}
}