-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.03 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
66
67
68
69
70
71
72
73
{
"name": "osteele.com",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build:prod": "NODE_ENV=production bun run build",
"build": "bun run build:favicon && bun run build:og && astro build",
"build:og": "bun run scripts/build-og-image.ts",
"clean": "rm -rf dist",
"dev": "astro dev",
"preview": "astro preview",
"format": "biome format --write src",
"fix": "biome check --write --unsafe src",
"lint": "biome check src",
"prepare": "husky",
"start": "astro preview",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:coverage": "vitest run --coverage",
"build:favicon": "bash scripts/build-favicons.sh",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.3.0",
"@astrojs/react": "^4.3.0",
"@astrojs/sitemap": "^3.4.1",
"@astrojs/tailwind": "^6.0.2",
"@fontsource-variable/fraunces": "^5.2.9",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-tabs": "^1.1.12",
"astro": "^5.11.0",
"astro-pagefind": "^1.8.5",
"autoprefixer": "^10.4.21",
"bun": "^1.2.18",
"clsx": "^2.1.1",
"n3": "^1.26.0",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"sharp": "^0.33.5",
"shiki": "^3.7.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@inquirer/prompts": "^3.3.2",
"@octokit/rest": "^20.1.2",
"@rdfjs/types": "^1.1.2",
"@types/bun": "^1.2.18",
"@types/jsdom": "^21.1.7",
"@types/n3": "^1.26.0",
"@types/node": "^20.19.7",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.18.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"linkinator": "^6.1.4",
"postcss": "^8.5.6",
"puppeteer": "^24.12.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
},
"engines": {
"node": "22.12.0",
"bun": "^1.1.36"
}
}