-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "hyprfolio",
"type": "module",
"version": "1.0.0",
"description": "A config-driven Astro portfolio that recreates a Hyprland Linux desktop",
"author": "Christian De Leon",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"validate": "tsx src/lib/validate.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/node": "^9.5.3",
"@astrojs/sitemap": "^3.7.0",
"@tailwindcss/vite": "^4.0.0",
"astro": "^5.2.0",
"js-yaml": "^4.1.0",
"tailwindcss": "^4.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"prettier": "^3.4.0",
"prettier-plugin-astro": "^0.14.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}