-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
67 lines (67 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "astro-theme-typography",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"repository": "https://github.com/moeyua/astro-theme-typography",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro check && astro dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "astro preview",
"theme:release": "esno scripts/release-theme.ts",
"theme:create": "esno scripts/create-post.ts",
"theme:update": "esno scripts/update-theme.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.6",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@github/clipboard-copy-element": "^1.3.0",
"@swup/astro": "^1.4.1",
"astro": "^4.15.7",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.4",
"giscus": "^1.5.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"typescript": "~5.5.4",
"vite": "^5.4.6"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@iconify-json/mdi": "^1.2.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.5.5",
"@types/sanitize-html": "^2.13.0",
"@unocss/eslint-plugin": "^0.62.3",
"@unocss/preset-attributify": "^0.62.4",
"@unocss/reset": "^0.62.4",
"@unocss/transformer-directives": "^0.62.4",
"astro-eslint-parser": "^1.0.3",
"bumpp": "^9.5.2",
"changelogen": "^0.5.7",
"consola": "^3.2.3",
"dayjs": "^1.11.13",
"eslint": "^9.10.0",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"prettier-plugin-astro": "^0.13.0",
"sanitize-html": "^2.13.0",
"simple-git-hooks": "^2.11.1",
"unocss": "^0.62.4",
"unocss-preset-theme": "^0.13.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}