-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "website",
"description": "Tiny Dev House website: a typography-first Astro site with MDX, built-in search, RSS, and a sitemap.",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"author": "Tiny Dev House",
"repository": {
"type": "git",
"url": "git+https://github.com/tinydevhouse/website.git"
},
"bugs": {
"url": "https://github.com/tinydevhouse/website/issues"
},
"keywords": [
"astro",
"blog",
"markdown",
"mdx",
"pagefind",
"typography"
],
"packageManager": "pnpm@11.5.2",
"engines": {
"node": ">=24.15.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"format": "prettier --write \"src/**/*.{astro,ts,css,md,mdx}\"",
"lint": "eslint \"src/**/*.{js,ts,astro}\" \"*.mjs\"",
"lint:css": "stylelint \"src/**/*.{css,astro}\""
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.0",
"@astrojs/mdx": "^6.0.2",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"astro": "^6.4.4",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-expressive-code": "^0.42.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"sharp": "^0.34.5",
"toc-rail": "^0.1.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"eslint-plugin-astro": "^1.7.0",
"pagefind": "^1.5.2",
"postcss-html": "^1.8.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1"
}
}