-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"type": "module",
"scripts": {
"dev": "bun --bun astro dev",
"build": "bun --bun astro build",
"preview": "bun --bun astro preview",
"test": "bun test",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit && bun --bun astro check",
"new": "bun ./scripts/new.ts",
"favicon": "bun ./scripts/favicon.ts"
},
"dependencies": {
"@astrojs/check": "0.9.5",
"@astrojs/sitemap": "3.6.0",
"@giphy/js-fetch-api": "5.7.0",
"@lucide/astro": "0.553.0",
"@yaireo/relative-time": "1.1.0",
"astro": "5.15.4",
"file-saver": "2.0.5",
"remark": "15.0.1",
"remark-gfm": "4.0.1",
"remark-html": "16.0.1",
"zod": "4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@happy-dom/global-registrator": "20.0.10",
"@kremalicious/config": "2.2.0",
"@types/bun": "1.3.2",
"@types/file-saver": "2.0.7",
"@types/node": "24.10.0",
"chalk": "5.6.2",
"ora": "9.0.0",
"sharp": "0.34.5",
"sharp-ico": "0.1.5",
"slugify": "1.6.6",
"typescript": "5.9.3"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.1",
"browserslist": [
"> 0.2%",
"last 3 versions",
"Firefox ESR",
"not dead"
]
}