forked from radishzzz/astro-theme-retypeset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.32 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.32 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
{
"name": "astro-theme-retypeset",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.33.0",
"repository": "https://github.com/radishzzz/astro-theme-retypeset",
"scripts": {
"dev": "astro check && astro dev",
"build": "astro check && astro build && pnpm apply-lqip",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"new-post": "tsx scripts/new-post.ts",
"apply-lqip": "tsx scripts/apply-lqip.ts",
"format-posts": "tsx scripts/format-posts.ts",
"update-theme": "tsx scripts/update-theme.ts"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/partytown": "^2.1.6",
"@astrojs/sitemap": "^3.7.2",
"@waline/client": "^3.13.0",
"astro": "^6.1.1",
"astro-compress": "^2.4.0",
"astro-og-canvas": "^0.10.1",
"canvaskit-wasm": "^0.41.0",
"feed": "^5.2.0",
"katex": "^0.16.44",
"lite-youtube-embed": "^0.3.4",
"markdown-it": "^14.1.1",
"mdast-util-to-string": "^4.0.0",
"mermaid": "^11.13.0",
"node-html-parser": "^7.1.0",
"reading-time": "^1.5.0",
"rehype-katex": "^7.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"remark-math": "^6.0.0",
"sanitize-html": "^2.17.2",
"sharp": "^0.34.5",
"twikoo": "^1.7.4",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@astrojs/check": "^0.9.8",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.5.0",
"@types/sanitize-html": "^2.16.1",
"@unocss/astro": "66.6.7",
"@unocss/eslint-plugin": "66.6.7",
"@unocss/preset-attributify": "66.6.7",
"@unocss/reset": "66.6.7",
"astro-eslint-parser": "^1.4.0",
"autocorrect-node": "^2.14.0",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"fast-glob": "^3.3.3",
"lint-staged": "^16.4.0",
"playwright": "^1.58.2",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"unocss": "66.6.7",
"unocss-preset-theme": "^0.14.1"
},
"pnpm": {
"patchedDependencies": {
"@qwik.dev/partytown@0.11.2": "patches/@qwik.dev__partytown@0.11.2.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,mjs,ts,astro}": "eslint --fix"
}
}