-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "blog",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"clean": "rimraf dist",
"check": "npm-run-all check:*",
"check:astro": "astro check ",
"check:biome": "biome ci",
"preview": "astro preview",
"astro": "astro",
"fmt": "npm-run-all fmt:*",
"fmt:package": "sort-package-json",
"fmt:biome": "npm-run-all fmt:biome:*",
"fmt:biome:format": "biome format --write",
"fmt:biome:check": "biome check --write"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.0",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@biomejs/biome": "^1.9.4",
"astro": "^5.0.0",
"budoux": "^0.6.3",
"npm-run-all2": "^7.0.1",
"rimraf": "^6.0.1",
"sort-package-json": "^2.10.1",
"typescript": "^5.6.3",
"ufo": "^1.5.4",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]"
}