-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && pnpm pagefind",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write --plugin=prettier-plugin-astro .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky"
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.10",
"@astrojs/check": "^0.9.9",
"@astrojs/mdx": "^4.3.14",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/svelte": "^7.2.5",
"@astrojs/ts-plugin": "^1.10.10",
"@fortawesome/fontawesome-free": "^6.7.2",
"@nanostores/persistent": "^1.3.4",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.2",
"astro": "^6.4.8",
"astro-compress": "^2.4.1",
"astro-delete-unused-images": "^1.0.3",
"astro-meta-tags": "^0.2.2",
"astro-pagefind": "^1.8.6",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"lite-youtube-embed": "^0.3.4",
"marked": "^16.4.2",
"nanostores": "^1.4.0",
"pagefind": "^1.5.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-toc": "^9.0.0",
"sharp": "^0.34.5",
"svelte": "^5.56.4",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"vite": "^6.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-plugin-astro": "^2.1.1",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"oxipng": "^1.0.1",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"svgo": "^4.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.62.1"
},
"prettier": {
"proseWrap": "always"
},
"lint-staged": {
"*.svg": [
"svgo --config svgo.config.mjs"
],
"*.png": [
"oxipng"
],
"*.{ts,js,astro}": [
"eslint --fix",
"prettier --write --plugin=prettier-plugin-astro"
],
"*.svelte": [
"eslint --fix"
]
},
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631",
"pnpm": {
"overrides": {
"yaml": ">=2.8.3",
"serialize-javascript@<=7.0.2": ">=7.0.3",
"astro@<6.1.6": ">=6.1.6",
"astro@<6.1.10": ">=6.1.10",
"esbuild@>=0.27.3 <0.28.1": ">=0.28.1",
"astro@<6.3.3": ">=6.3.3",
"astro@<6.4.6": ">=6.4.6"
}
}
}