-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 810 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
{
"name": "kito",
"description": "Kito's official website and documentation.",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"fmt": "biome format",
"fmt:fix": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"check": "biome check",
"check:fix": "biome check --write"
},
"dependencies": {
"@astrojs/mdx": "^4.0.0",
"@tailwindcss/vite": "^4.1.17",
"astro": "^5.15.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-pretty-code": "^0.14.0",
"shiki": "^1.22.2",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@biomejs/biome": "2.3.4"
}
}