-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "website",
"type": "module",
"license": "MIT",
"private": true,
"version": "0.0.1",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=22.2.0 <25.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"type-check": "svelte-check && astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fix": "pnpm format && pnpm lint:fix",
"check": "pnpm type-check && pnpm lint && pnpm format:check"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/svelte": "^8.1.2",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"astro": "^6.4.8",
"sharp": "^0.35.2",
"svelte": "^5.56.3"
},
"devDependencies": {
"@astrojs/check": "0.9.9",
"@astrojs/ts-plugin": "^1.10.9",
"@eslint/js": "^10.0.1",
"@iconify-json/lucide": "^1.2.114",
"@iconify-json/simple-icons": "^1.2.86",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte-check": "^4.6.0",
"svelte-eslint-parser": "^1.8.0",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"unplugin-icons": "^23.0.1"
}
}