-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.23 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.23 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
{
"name": "astro-theme-typography",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@10.13.1",
"install": "pnpm install",
"description": "A typography theme for Astro, inspired by the design of the original Typography theme.",
"author": "Moeyua <mail@moeyua.com> (https://github.com/moeyua/)",
"license": "MIT",
"repository": "https://github.com/moeyua/astro-theme-typography",
"scripts": {
"dev": "astro check && astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"theme:release": "tsx scripts/release-theme.ts",
"theme:create": "tsx scripts/create-post.ts",
"theme:update": "tsx scripts/update-theme.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.3.12",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.4.1",
"@github/clipboard-copy-element": "^1.3.0",
"@swup/astro": "^1.6.0",
"astro": "^5.11.1",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.4",
"giscus": "^1.6.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.17.0",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.61",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.16.4",
"@types/sanitize-html": "^2.16.0",
"@unocss/eslint-plugin": "^66.3.3",
"@unocss/preset-attributify": "^66.3.3",
"@unocss/reset": "^66.3.3",
"@unocss/transformer-directives": "^66.5.10",
"astro-eslint-parser": "^1.2.2",
"bumpp": "^10.2.0",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
"dayjs": "^1.11.13",
"eslint": "^9.31.0",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-format": "^1.1.0",
"lint-staged": "^16.1.2",
"markdown-it": "^14.1.0",
"prettier-plugin-astro": "^0.14.1",
"sanitize-html": "^2.17.0",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"unocss": "^66.3.3",
"unocss-preset-theme": "^0.14.1",
"vite-plugin-devtools-json": "^0.3.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}