-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"name": "sharqawy-personal-site",
"version": "0.5.0",
"private": false,
"description": "Personal website and blog built with Astro.",
"keywords": [
"astro",
"blog",
"personal-site",
"typescript",
"tailwindcss",
"mdx"
],
"homepage": "https://www.sherqo.me",
"repository": {
"type": "git",
"url": "https://github.com/sherqo/root.git"
},
"license": "MIT",
"author": "Sharqawy <sherqo@sherqo.me>",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "bun run type-check && bun run lint && bun run format:check",
"clean": "rm -rf dist .astro",
"dev": "astro dev --host",
"dev:debug": "astro dev --host --verbose",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"preview": "astro preview --host",
"start": "astro build && astro preview --host",
"type-check": "astro check"
},
"dependencies": {
"astro": "6.0.7"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/cloudflare": "^13.1.8",
"@astrojs/mdx": "5.0.2",
"@astrojs/sitemap": "3.7.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"clsx": "^2.1.1",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"globals": "^16.5.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.22",
"prettier-plugin-sort-json": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html-minifier": "^1.0.5"
},
"packageManager": "bun@1.3.8",
"trustedDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp"
]
}