-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "homepage",
"type": "module",
"version": "0.0.0",
"author": {
"name": "Lukas Trombach",
"email": "contact@lukastrombach.dev",
"url": "https://lukastrombach.dev"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/Trombach/astro-homepage"
},
"browserslist": [
">1%",
"not dead",
"last 1 years"
],
"scripts": {
"dev": "astro dev",
"start": "HOST=0.0.0.0 node dist/server/entry.mjs",
"ts:check": "astro check && svelte-check",
"biome:write": "biome check --write .",
"biome:check": "biome check .",
"biome:staged": "biome check --staged --error-on-warnings --no-errors-on-unmatched .",
"biome:ci": "biome ci --changed --no-errors-on-unmatched --error-on-warnings",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"bump-version": "changeset version && biome format --write package.json",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^7.0.2",
"@astrojs/node": "^11.0.2",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/svelte": "^9.0.1",
"@floating-ui/dom": "^1.7.6",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/logos": "^1.2.11",
"@iconify-json/simple-icons": "^1.2.80",
"@iconify-json/svg-spinners": "^1.2.4",
"@inox-tools/astro-when": "^3.0.0",
"@inox-tools/content-utils": "^0.16.0",
"@microflash/rehype-figure": "^2.1.4",
"@tailwindcss/vite": "^4.2.4",
"altcha": "^3.2.0",
"altcha-lib": "^2.2.0",
"astro": "^7.0.7",
"astro-og-canvas": "^0.13.0",
"astro-starlight-remark-asides": "^0.0.7",
"beasties": "^0.4.2",
"canvaskit-wasm": "^0.41.1",
"clsx": "^2.1.1",
"linkedom": "^0.18.12",
"minio": "^8.0.7",
"radash": "^12.1.1",
"remark-directive": "^4.0.0",
"remark-github": "^12.0.0",
"resend": "^6.12.2",
"sanitize-html": "^2.17.3",
"sharp": "^0.35.0",
"svelte": "^5.55.5",
"tailwindcss": "^4.1.18",
"uint8array-extras": "^1.5.0",
"unplugin-icons": "^23.0.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.1",
"@biomejs/biome": "2.5.8",
"@types/node": "^25.6.0",
"@types/sanitize-html": "^2.16.1",
"husky": "^9.1.7",
"svelte-check": "^4.4.7",
"typescript": "^6.0.3"
},
"engines": {
"pnpm": ">=9",
"node": ">=24 <25"
},
"packageManager": "pnpm@11.21.0"
}