-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 913 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
35
36
37
{
"name": "blog",
"type": "module",
"private": true,
"imports": {
"#components/*": "./src/components/*.astro",
"#styles": "./src/styles/global.css",
"#layout": "./src/layouts/Layout.astro"
},
"scripts": {
"lint": "biome check",
"format": "biome check --fix --linter-enabled=false",
"build": "astro build",
"deploy": "wrangler deploy",
"share": "wrangler versions upload",
"dev": "astro dev"
},
"dependencies": {
"@tailwindcss/vite": "4.3.0",
"astro": "6.4.4",
"tailwindcss": "4.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@gameroman/config": "0.1.0",
"@tailwindcss/typography": "0.5.20",
"typescript": "6.0.3",
"wrangler": "4.100.0"
},
"overrides": {
"@jridgewell/trace-mapping": "0.3.31",
"esbuild": "0.28.1",
"is-docker": "4.0.0",
"semver": "7.8.4",
"unstorage": "2.0.0-alpha.7"
}
}