-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"add-track": "bun run scripts/add-track.ts",
"suno": "cd tools/suno-cli && bun run src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "biome check --fix && oxlint --fix --ignore-pattern '*.astro'",
"lint:check": "biome check && oxlint --ignore-pattern '*.astro'",
"format": "biome format --write",
"check": "astro check",
"seo:check": "bun run scripts/seo-check.ts",
"links:check": "linkinator ./dist --recurse --skip '^(?!http://localhost)' --skip 'https?://(?!jval\\.dev)' --verbosity error",
"prebuild": "bun run seo:check",
"prepare": "lefthook install"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.6",
"astro": "^5.16.6",
"commander": "^15.0.0",
"exponential-backoff": "^3.1.3",
"ora": "^9.0.0",
"cli-progress": "^3.12.0",
"@types/cli-progress": "^3.11.5",
"playwright": "^1.57.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/language-server": "^2.16.2",
"@astrojs/partytown": "^2.1.4",
"@biomejs/biome": "^2.3.11",
"@cloudflare/workers-types": "^4.20260101.0",
"@vitest/ui": "^4.0.17",
"front-matter": "^4.0.2",
"happy-dom": "^20.3.1",
"lefthook": "^2.0.13",
"linkinator": "^7.5.3",
"oxlint": "^1.38.0",
"schema-dts": "^2.0.0",
"typescript": "^6.0.3",
"vitest": "^4.0.17"
}
}