-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
39
40
41
42
43
44
45
46
{
"name": "elians-astro-starter",
"type": "module",
"version": "0.0.1",
"description": "An opinionated Astro starter kit by Elian",
"packageManager": "[email protected]",
"engines": {
"node": "22"
},
"homepage": "https://github.com/ElianCodes/elians-astro-startkit",
"repository": {
"url": "git+https://github.com/ElianCodes/elians-astro-startkit",
"type": "git"
},
"author": {
"name": "ElianCodes",
"email": "[email protected]",
"url": "https://www.elian.codes"
},
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "biome format ./src/* --write",
"lint": "biome lint ./src/*",
"check": "biome check ./src/* --apply"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/solid-js": "^5.0.4",
"astro": "^5.2.1",
"astro-meta-tags": "^0.3.1",
"solid-js": "^1.9.4",
"typescript": "^5.7.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@unocss/reset": "^65.4.0",
"@unocss/transformer-directives": "^65.4.0",
"unocss": "^65.4.0"
}
}