-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
package.json
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
{
"name": "alisson-website",
"type": "module",
"version": "1.0.0",
"description": "Alisson's website",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "biome lint .",
"format": "biome check . --write",
"format-unsafe": "biome check . --write --unsafe",
"typecheck": "astro check"
},
"repository": {
"type": "git",
"url": "https://github.com/alissonlauffer/my-website.git"
},
"keywords": [],
"author": "Alisson Lauffer <me@alisson.sh> (https://alisson.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alissonlauffer/my-website/issues"
},
"homepage": "https://github.com/alissonlauffer/my-website#readme",
"dependencies": {
"@astrojs/check": "^0.9.4",
"@fontsource/abeezee": "^5.1.0",
"astro": "^5.1.1",
"typescript": "^5.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4"
},
"trustedDependencies": ["@biomejs/biome"]
}