-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.29 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.29 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
{
"name": "hnfront",
"version": "0.0.1",
"type": "module",
"scripts": {
"prebuild": "node --experimental-strip-types ./authors.ts",
"dev": "pnpm run prebuild && astro dev",
"build": "pnpm run prebuild && astro build",
"preview": "pnpm run prebuild && astro preview",
"astro": "astro",
"lint": "biome check --formatter-enabled false src scripts blog",
"lint:fix": "biome check --formatter-enabled false --write src scripts blog",
"format": "prettier --check src && biome format src scripts blog",
"format:fix": "prettier --write src && biome format --write src scripts blog"
},
"packageManager": "pnpm@10.11.1",
"dependencies": {
"astro": "5.8.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@richardtowers/remark-abbr": "1.1.5",
"@syntect/node": "0.0.4",
"@types/mdast": "4.0.4",
"@types/node": "22.15.23",
"github-slugger": "2.0.0",
"mdast-util-to-string": "4.0.0",
"murmurhash": "2.0.1",
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-css-order": "2.1.2",
"typescript": "5.8.3",
"unified": "11.0.5",
"unist-util-visit": "5.0.0",
"vite": "6.3.5"
}
}