generated from chrismwilliams/astro-theme-cactus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.97 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
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": "oriolcastro.me",
"version": "1.0.0",
"private": false,
"description": "My personal blog",
"type": "module",
"scripts": {
"build": "astro build",
"postbuild": "pagefind --site dist",
"check": "tsc -noEmit",
"dev": "astro dev",
"format": "pnpm run format:code && pnpm run format:imports",
"format:code": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"format:imports": "biome check --formatter-enabled=false --write",
"lint": "biome lint .",
"prepare": "is-ci || pnpm dlx simple-git-hooks",
"preview": "astro preview",
"start": "astro dev"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --edit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome lint --write --unsafe",
"pnpm run format --"
],
"package.json": "sort-package-json"
},
"dependencies": {
"@astrojs/mdx": "4.0.5",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.4",
"astro": "5.1.5",
"astro-expressive-code": "0.39.0",
"astro-icon": "1.1.5",
"astro-robots-txt": "1.0.0",
"astro-webmanifest": "1.0.0",
"cheerio": "1.0.0-rc.12",
"hastscript": "9.0.0",
"mdast-util-directive": "3.0.0",
"mdast-util-to-markdown": "2.1.2",
"mdast-util-to-string": "4.0.0",
"rehype-external-links": "3.0.0",
"rehype-unwrap-images": "1.0.0",
"remark-directive": "3.0.0",
"satori": "0.12.1",
"satori-html": "0.3.2",
"sharp": "0.33.5",
"unified": "11.0.5",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@iconify-json/lucide": "1.2.22",
"@iconify-json/simple-icons": "^1.2.19",
"@pagefind/default-ui": "1.3.0",
"@resvg/resvg-js": "2.6.2",
"@tailwindcss/typography": "0.5.16",
"@types/cheerio": "0.22.35",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"is-ci": "4.1.0",
"lint-staged": "15.3.0",
"pagefind": "1.3.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.9",
"reading-time": "1.5.0",
"simple-git-hooks": "2.11.1",
"sort-package-json": "2.12.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"has": "npm:@nolyfill/has@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.values": "npm:@nolyfill/object.values@latest"
}
}
}