-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 972 Bytes
/
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
{
"name": "relidocs",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "bun typecheck && bun lint && bun format",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --fix .",
"lint:i": "eslint --inspect-config",
"format": "biome check --write ."
},
"dependencies": {
"@astrojs/starlight": "^0.30.3",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.4",
"astro": "^5.1.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.17.0",
"@eslint/json": "^0.9.0",
"@eslint/markdown": "^6.2.1",
"@stylistic/eslint-plugin": "^2.12.1",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.4.0",
"globals": "^15.14.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}