-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.53 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.53 KB
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
{
"name": "astro-base",
"description": "Minimal Astro starter for new projects with ESLint Prettier, sitemap and RSS.",
"type": "module",
"version": "1.2.0",
"scripts": {
"clean": "rm -rf node_modules .astro dist",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build; prettier --write \"dist/**/*.{js,html,css}\"",
"preview": "astro preview",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,astro}\"",
"lint:eslint": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,md,astro}\"",
"refresh": "pnpm dlx @astrojs/upgrade; pnpm up -L"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/markdown": "^8.0.1",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/logos": "^1.2.11",
"@types/node": "^25.5.0",
"@unocss/astro": "^66.6.7",
"@unocss/eslint-config": "^66.6.7",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"unocss": "^66.6.7"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}