-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.06 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
{
"name": "wagomu-no-akibako",
"type": "module",
"version": "0.0.1",
"private": true,
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.12.0",
"onFail": "download"
}
},
"scripts": {
"generate:dates": "npx tsx tools/git-dates/generate.ts",
"dev": "pnpm generate:dates && astro dev",
"start": "pnpm generate:dates && astro dev",
"build": "pnpm generate:dates && astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro",
"format": "prettier --write --plugin-search-dir=. .",
"format:check": "prettier --check --plugin-search-dir=. ",
"lint": "eslint --cache --fix src",
"lint:check": "eslint --cache src",
"test": "vitest",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/mdx": "5.0.3",
"@astrojs/rss": "4.0.18",
"@eslint/js": "^9.21.0",
"@markuplint/astro-parser": "^4.6.14",
"@playform/inline": "^0.1.0",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@typescript-eslint/utils": "^8.26.0",
"@vitest/ui": "^3.2.4",
"astro": "6.1.1",
"astro-eslint-parser": "^1.2.1",
"astro-google-fonts-optimizer": "^0.2.2",
"astro-zenn-loader": "^1.0.1",
"budoux": "^0.7.0",
"cheerio": "1.0.0",
"eslint": "^9.21.0",
"eslint-plugin-astro": "^1.3.1",
"hast-util-to-string": "^3.0.1",
"markuplint": "^4.11.4",
"mdx": "^0.3.1",
"postcss": "^8.5.6",
"postcss-nested": "^7.0.2",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"rss-parser": "^3.13.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.26.0",
"unified": "^11.0.5",
"unist-util-visit": "5.0.0",
"vitest": "^3.2.4",
"zod": "^4.3.6"
},
"dependencies": {
"astro-og-canvas": "^0.7.0",
"canvaskit-wasm": "^0.40.0",
"gsap": "^3.12.5"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@latest"
}
}
}